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| Constructor and Description |
|---|
PackageDeclaration() |
PackageDeclaration(List<AnnotationExpr> annotations,
NameExpr name) |
PackageDeclaration(NameExpr name) |
PackageDeclaration(Range range,
List<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.
|
List<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(List<AnnotationExpr> annotations) |
PackageDeclaration |
setName(NameExpr name)
Sets the name of this package declaration.
|
addOrphanComment, clone, contains, equals, getAllContainedComments, getBegin, getChildrenNodes, getComment, getData, getEnd, getNodesByType, getOrphanComments, getParentNode, getParentNodeOfType, getRange, hasComment, hashCode, isPositionedAfter, isPositionedBefore, setAsParentNodeOf, setAsParentNodeOf, setBegin, setBlockComment, setComment, setData, setEnd, setLineComment, setParentNode, setRange, toString, toStringWithoutComments, tryAddImportToParentCompilationUnitfinalize, getClass, notify, notifyAll, wait, wait, waitaddAnnotation, addAnnotation, addMarkerAnnotation, addMarkerAnnotation, addSingleMemberAnnotation, addSingleMemberAnnotation, getAnnotationByClass, getAnnotationByName, isAnnotationPresent, isAnnotationPresentpublic PackageDeclaration()
public PackageDeclaration(NameExpr name)
public PackageDeclaration(List<AnnotationExpr> annotations, NameExpr name)
public PackageDeclaration(Range range, List<AnnotationExpr> annotations, NameExpr name)
public <R,A> R accept(GenericVisitor<R,A> v, A arg)
Nodepublic <A> void accept(VoidVisitor<A> v, A arg)
Nodepublic List<AnnotationExpr> getAnnotations()
null if there are no annotations.getAnnotations in interface NodeWithAnnotations<PackageDeclaration>nullpublic NameExpr getName()
public String getPackageName()
public PackageDeclaration setAnnotations(List<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.