public final class PackageDeclaration extends Node
This class represents the package declaration. The package declaration is
optional for the CompilationUnit
.
PackageDeclaration | ::= |
( AnnotationExpr )* "package" NameExpr ) ";"
|
Constructor and Description |
---|
PackageDeclaration() |
PackageDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
List<AnnotationExpr> annotations,
NameExpr name) |
PackageDeclaration(List<AnnotationExpr> annotations,
NameExpr name) |
PackageDeclaration(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 of the package.
|
void |
setAnnotations(List<AnnotationExpr> annotations) |
void |
setName(NameExpr name)
Sets the name of this package declaration.
|
equals, getBeginColumn, getBeginLine, getData, getEndColumn, getEndLine, hashCode, setBeginColumn, setBeginLine, setData, setEndColumn, setEndLine, toString
public PackageDeclaration()
public PackageDeclaration(NameExpr name)
public PackageDeclaration(List<AnnotationExpr> annotations, NameExpr name)
public PackageDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, List<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 List<AnnotationExpr> getAnnotations()
null
if there are no annotations.null
public NameExpr getName()
public void setAnnotations(List<AnnotationExpr> annotations)
annotations
- the annotations to setpublic void setName(NameExpr name)
name
- the name to set