org.eclipse.jdt.core.jdom
Interface IDOMPackage
- All Superinterfaces:
- Cloneable, IDOMNode
- public interface IDOMPackage
- extends IDOMNode
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.
This interface is not intended to be implemented by clients.
Method Summary |
String |
getName()
The IDOMPackage refinement of this IDOMNode
method returns the name of this package declaration, or null
if it has none. |
void |
setName(String name)
The IDOMPackage refinement of this IDOMNode
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 |
getName
public String getName()
- The
IDOMPackage
refinement of this IDOMNode
method returns the name of this package declaration, or null
if it has none. The syntax for a package name corresponds to PackageName
as defined by PackageDeclaration (JLS2 7.4).
- Specified by:
getName
in interface IDOMNode
- Following copied from interface:
org.eclipse.jdt.core.jdom.IDOMNode
- Returns:
- the name, or
null
if it has no name
setName
public void setName(String name)
- The
IDOMPackage
refinement of this IDOMNode
method sets the name of this package declaration. The syntax for a package
name corresponds to PackageName as defined by PackageDeclaration (JLS2 7.4).
A null
name indicates an empty package declaration; that is,
getContents
returns the empty string.
- Specified by:
setName
in interface IDOMNode
- Following copied from interface:
org.eclipse.jdt.core.jdom.IDOMNode
- Parameters:
name
- the name, or null
to clear the name
Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.