Schnittstelle IDOMPackage

Alle Superschnittstellen:
Cloneable, IDOMNode

public interface IDOMPackage extends IDOMNode
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.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.
  • Methodendetails

    • getName

      String getName()
      Veraltet.
      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).
      Angegeben von:
      getName in Schnittstelle IDOMNode
      Gibt zurück:
      the name of this package declaration, or null if it has none
    • setName

      void setName(String name)
      Veraltet.
      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.
      Angegeben von:
      setName in Schnittstelle IDOMNode
      Parameter:
      name - the given name