| Package | Description |
|---|---|
| org.walkmod.javalang.ast |
AST root nodes of Java source files.
|
| org.walkmod.javalang.ast.expr |
AST nodes for expressions (e.g values applied as arguments in method calls)
|
| org.walkmod.javalang.visitors |
Generic and simple visitors to process source files.
|
| Modifier and Type | Method and Description |
|---|---|
NameExpr |
PackageDeclaration.getName()
Return the name of the package.
|
NameExpr |
ImportDeclaration.getName()
Retrieves the name of the import.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PackageDeclaration.setName(NameExpr name)
Sets the name of this package declaration.
|
void |
ImportDeclaration.setName(NameExpr name)
Sets the name this import.
|
| Constructor and Description |
|---|
ImportDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
NameExpr name,
boolean isStatic,
boolean isAsterisk) |
ImportDeclaration(NameExpr name,
boolean isStatic,
boolean isAsterisk) |
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 | Class and Description |
|---|---|
class |
QualifiedNameExpr |
| Modifier and Type | Field and Description |
|---|---|
protected NameExpr |
AnnotationExpr.name |
| Modifier and Type | Method and Description |
|---|---|
NameExpr |
AnnotationExpr.getName() |
NameExpr |
QualifiedNameExpr.getQualifier() |
| Modifier and Type | Method and Description |
|---|---|
void |
AnnotationExpr.setName(NameExpr name) |
void |
QualifiedNameExpr.setQualifier(NameExpr qualifier) |
| Constructor and Description |
|---|
MarkerAnnotationExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
NameExpr name) |
MarkerAnnotationExpr(NameExpr name) |
NormalAnnotationExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
NameExpr name,
List<MemberValuePair> pairs) |
NormalAnnotationExpr(NameExpr name,
List<MemberValuePair> pairs) |
QualifiedNameExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
NameExpr scope,
String name) |
QualifiedNameExpr(NameExpr scope,
String name) |
SingleMemberAnnotationExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
NameExpr name,
Expression memberValue) |
SingleMemberAnnotationExpr(NameExpr name,
Expression memberValue) |
| Modifier and Type | Method and Description |
|---|---|
R |
GenericVisitorAdapter.visit(NameExpr n,
A arg) |
void |
VoidVisitorAdapter.visit(NameExpr n,
A arg) |
void |
VoidVisitor.visit(NameExpr n,
A arg) |
Node |
ModifierVisitorAdapter.visit(NameExpr n,
A arg) |
R |
GenericVisitor.visit(NameExpr n,
A arg) |
Boolean |
EqualsVisitor.visit(NameExpr n1,
Node arg) |
Node |
CloneVisitor.visit(NameExpr _n,
Object _arg) |
void |
DumpVisitor.visit(NameExpr n,
Object arg) |
void |
CompositeVisitor.visit(NameExpr n,
VisitorContext arg) |
Copyright © 2015. All rights reserved.