Schnittstelle IDOMPackage
Veraltet.
The JDOM was made obsolete by the addition in 2.0 of the more
powerful, fine-grained DOM/AST API found in the
org.aspectj.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.
-
Feldübersicht
Von Schnittstelle geerbte Felder org.aspectj.org.eclipse.jdt.core.jdom.IDOMNode
COMPILATION_UNIT, FIELD, IMPORT, INITIALIZER, METHOD, PACKAGE, TYPE -
Methodenübersicht
Modifizierer und TypMethodeBeschreibunggetName()Veraltet.TheIDOMPackagerefinement of thisIDOMNodemethod returns the name of this package declaration, ornullif it has none.voidVeraltet.TheIDOMPackagerefinement of thisIDOMNodemethod sets the name of this package declaration.Von Schnittstelle geerbte Methoden org.aspectj.org.eclipse.jdt.core.jdom.IDOMNode
addChild, canHaveChildren, clone, getCharacters, getChild, getChildren, getContents, getFirstChild, getJavaElement, getNextNode, getNodeType, getParent, getPreviousNode, insertSibling, isAllowableChild, isSignatureEqual, remove
-
Methodendetails
-
getName
String getName()Veraltet.TheIDOMPackagerefinement of thisIDOMNodemethod returns the name of this package declaration, ornullif it has none. The syntax for a package name corresponds to PackageName as defined by PackageDeclaration (JLS2 7.4). -
setName
Veraltet.TheIDOMPackagerefinement of thisIDOMNodemethod sets the name of this package declaration. The syntax for a package name corresponds to PackageName as defined by PackageDeclaration (JLS2 7.4). Anullname indicates an empty package declaration; that is,getContentsreturns the empty string.
-