Package org.eclipse.jdt.core.jdom
Interface IDOMPackage
Deprecated.
The JDOM was made obsolete by the addition in 2.0 of the more
powerful, fine-grained DOM/AST API found in the
org.eclipse.jdt.core.dom package.
Represents a package declaration.
The corresponding syntactic unit is PackageDeclaration (JLS2 7.4).
A Package has no children, and its parent is a compilation unit.
- Restriction:
- This interface is not intended to be implemented by clients.
-
Field Summary
Fields inherited from interface org.eclipse.jdt.core.jdom.IDOMNode
COMPILATION_UNIT, FIELD, IMPORT, INITIALIZER, METHOD, PACKAGE, TYPE
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
Deprecated.TheIDOMPackage
refinement of thisIDOMNode
method returns the name of this package declaration, ornull
if it has none.void
Deprecated.TheIDOMPackage
refinement of thisIDOMNode
method sets the name of this package declaration.Methods inherited from interface org.eclipse.jdt.core.jdom.IDOMNode
addChild, canHaveChildren, clone, getCharacters, getChild, getChildren, getContents, getFirstChild, getJavaElement, getNextNode, getNodeType, getParent, getPreviousNode, insertSibling, isAllowableChild, isSignatureEqual, remove
-
Method Details
-
getName
String getName()Deprecated.TheIDOMPackage
refinement of thisIDOMNode
method returns the name of this package declaration, ornull
if it has none. The syntax for a package name corresponds to PackageName as defined by PackageDeclaration (JLS2 7.4). -
setName
Deprecated.TheIDOMPackage
refinement of thisIDOMNode
method sets the name of this package declaration. The syntax for a package name corresponds to PackageName as defined by PackageDeclaration (JLS2 7.4). Anull
name indicates an empty package declaration; that is,getContents
returns the empty string.
-