public final class PackageDeclaration extends Node implements NodeWithAnnotations<PackageDeclaration>
This class represents the package declaration. The package declaration is
optional for the CompilationUnit
.
PackageDeclaration ::= (
AnnotationExpr
)* "package"
NameExpr
) ";"
ABSOLUTE_BEGIN_LINE, ABSOLUTE_END_LINE, NODE_BY_BEGIN_POSITION
Constructor and Description |
---|
PackageDeclaration() |
PackageDeclaration(NameExpr name) |
PackageDeclaration(NodeList<AnnotationExpr> annotations,
NameExpr name) |
PackageDeclaration(Range range,
NodeList<AnnotationExpr> annotations,
NameExpr name) |
Modifier and Type | Method and Description |
---|---|
<R,A> R |
accept(GenericVisitor<R,A> v,
A arg)
Accept method for visitor support.
|
<A> void |
accept(VoidVisitor<A> v,
A arg)
Accept method for visitor support.
|
NodeList<AnnotationExpr> |
getAnnotations()
Retrieves the list of annotations declared before the package
declaration.
|
NameExpr |
getName()
Return the name expression of the package.
|
String |
getPackageName()
Get full package name.
|
PackageDeclaration |
setAnnotations(NodeList<AnnotationExpr> annotations) |
PackageDeclaration |
setName(NameExpr name)
Sets the name of this package declaration.
|
addOrphanComment, clone, containsWithin, equals, getAllContainedComments, getBackwardsCompatibleChildrenNodes, getBegin, getChildrenNodes, getComment, getEnd, getNodesByType, getOrphanComments, getParentNode, getParentNodeOfType, getRange, getUserData, hashCode, isPositionedAfter, isPositionedBefore, remove, setAsParentNodeOf, setAsParentNodeOf, setAsParentNodeOf, setBegin, setBlockComment, setComment, setEnd, setLineComment, setParentNode, setRange, setUserData, toString, toStringWithoutComments, tryAddImportToParentCompilationUnit
finalize, getClass, notify, notifyAll, wait, wait, wait
addAnnotation, addAnnotation, addMarkerAnnotation, addMarkerAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, getAnnotationByClass, getAnnotationByName, isAnnotationPresent, isAnnotationPresent
public PackageDeclaration()
public PackageDeclaration(NameExpr name)
public PackageDeclaration(NodeList<AnnotationExpr> annotations, NameExpr name)
public PackageDeclaration(Range range, NodeList<AnnotationExpr> annotations, NameExpr name)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Node
public <A> void accept(VoidVisitor<A> v, A arg)
Node
public NodeList<AnnotationExpr> getAnnotations()
null
if there are no annotations.getAnnotations
in interface NodeWithAnnotations<PackageDeclaration>
null
public NameExpr getName()
public String getPackageName()
public PackageDeclaration setAnnotations(NodeList<AnnotationExpr> annotations)
setAnnotations
in interface NodeWithAnnotations<PackageDeclaration>
annotations
- the annotations to setpublic PackageDeclaration setName(NameExpr name)
name
- the name to setCopyright © 2007–2016. All rights reserved.