Modifier and Type | Method and Description |
---|---|
static NameExpr |
ASTHelper.createNameExpr(String qualifiedName)
Creates a new
NameExpr from a qualified name.The qualified name can contains "." (dot) characters. |
Modifier and Type | Method and Description |
---|---|
NameExpr |
QualifiedNameContextAdapter.adapt(Java7Parser.QualifiedNameContext context,
AdapterParameters adapterParameters) |
static NameExpr |
AdapterUtil.qualifiedName(List<org.antlr.v4.runtime.tree.TerminalNode> terminalNodeList) |
Modifier and Type | Method and Description |
---|---|
List<NameExpr> |
QualifiedNameListContextAdapter.adapt(Java7Parser.QualifiedNameListContext context,
AdapterParameters adapterParameters) |
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 | Method and Description |
---|---|
List<NameExpr> |
MethodDeclaration.getThrows() |
List<NameExpr> |
ConstructorDeclaration.getThrows() |
Modifier and Type | Method and Description |
---|---|
void |
MethodDeclaration.setThrows(List<NameExpr> throws_) |
void |
ConstructorDeclaration.setThrows(List<NameExpr> throws_) |
Constructor and Description |
---|
ConstructorDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
List<NameExpr> throws_,
BlockStmt block) |
ConstructorDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
String name,
List<Parameter> parameters,
List<NameExpr> throws_,
BlockStmt block) |
MethodDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<NameExpr> throws_,
BlockStmt block) |
MethodDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
List<TypeParameter> typeParameters,
Type type,
String name,
List<Parameter> parameters,
int arrayCount,
List<NameExpr> throws_,
BlockStmt block) |
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 |
---|---|
void |
VoidVisitorAdapter.visit(NameExpr n,
A arg) |
void |
VoidVisitor.visit(NameExpr n,
A arg) |
Node |
ModifierVisitorAdapter.visit(NameExpr n,
A arg) |
R |
GenericVisitorAdapter.visit(NameExpr n,
A arg) |
R |
GenericVisitor.visit(NameExpr n,
A arg) |
Boolean |
EqualsVisitor.visit(NameExpr n1,
Node arg) |
void |
DumpVisitor.visit(NameExpr n,
Object arg) |
Copyright © 2013. All Rights Reserved.