Package | Description |
---|---|
com.github.antlrjavaparser.adapter | |
com.github.antlrjavaparser.api | |
com.github.antlrjavaparser.api.body | |
com.github.antlrjavaparser.api.expr |
Modifier and Type | Method and Description |
---|---|
AnnotationExpr |
AnnotationContextAdapter.adapt(Java7Parser.AnnotationContext context,
AdapterParameters adapterParameters) |
Modifier and Type | Method and Description |
---|---|
List<AnnotationExpr> |
AnnotationsContextAdapter.adapt(Java7Parser.AnnotationsContext context,
AdapterParameters adapterParameters) |
Modifier and Type | Method and Description |
---|---|
List<AnnotationExpr> |
PackageDeclaration.getAnnotations()
Retrieves the list of annotations declared before the package
declaration.
|
Modifier and Type | Method and Description |
---|---|
void |
PackageDeclaration.setAnnotations(List<AnnotationExpr> annotations) |
Constructor and Description |
---|
PackageDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
List<AnnotationExpr> annotations,
NameExpr name) |
PackageDeclaration(List<AnnotationExpr> annotations,
NameExpr name) |
Modifier and Type | Method and Description |
---|---|
List<AnnotationExpr> |
Resource.getAnnotations() |
List<AnnotationExpr> |
Parameter.getAnnotations() |
List<AnnotationExpr> |
CatchParameter.getAnnotations() |
List<AnnotationExpr> |
BodyDeclaration.getAnnotations() |
Modifier and Type | Method and Description |
---|---|
void |
Resource.setAnnotations(List<AnnotationExpr> annotations) |
void |
Parameter.setAnnotations(List<AnnotationExpr> annotations) |
void |
CatchParameter.setAnnotations(List<AnnotationExpr> annotations) |
void |
BodyDeclaration.setAnnotations(List<AnnotationExpr> annotations) |
Constructor and Description |
---|
AnnotationDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<BodyDeclaration> members) |
AnnotationDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<BodyDeclaration> members) |
AnnotationMemberDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
Type type,
String name,
Expression defaultValue) |
AnnotationMemberDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
Type type,
String name,
Expression defaultValue) |
BodyDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
List<AnnotationExpr> annotations,
JavadocComment javaDoc) |
BodyDeclaration(List<AnnotationExpr> annotations,
JavadocComment javaDoc) |
CatchParameter(int beginLine,
int beginColumn,
int endLine,
int endColumn,
int modifiers,
List<AnnotationExpr> annotations,
List<Type> typeList,
VariableDeclaratorId id) |
ClassOrInterfaceDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
boolean isInterface,
String name,
List<TypeParameter> typeParameters,
List<ClassOrInterfaceType> extendsList,
List<ClassOrInterfaceType> implementsList,
List<BodyDeclaration> members) |
ClassOrInterfaceDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
boolean isInterface,
String name,
List<TypeParameter> typeParameters,
List<ClassOrInterfaceType> extendsList,
List<ClassOrInterfaceType> implementsList,
List<BodyDeclaration> members) |
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) |
EnumConstantDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
List<AnnotationExpr> annotations,
String name,
List<Expression> args,
List<BodyDeclaration> classBody) |
EnumConstantDeclaration(JavadocComment javaDoc,
List<AnnotationExpr> annotations,
String name,
List<Expression> args,
List<BodyDeclaration> classBody) |
EnumDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<ClassOrInterfaceType> implementsList,
List<EnumConstantDeclaration> entries,
List<BodyDeclaration> members) |
EnumDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
String name,
List<ClassOrInterfaceType> implementsList,
List<EnumConstantDeclaration> entries,
List<BodyDeclaration> members) |
FieldDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
Type type,
List<VariableDeclarator> variables) |
FieldDeclaration(JavadocComment javaDoc,
int modifiers,
List<AnnotationExpr> annotations,
Type type,
List<VariableDeclarator> variables) |
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) |
Parameter(int beginLine,
int beginColumn,
int endLine,
int endColumn,
int modifiers,
List<AnnotationExpr> annotations,
Type type,
boolean isVarArgs,
VariableDeclaratorId id) |
Resource(int beginLine,
int beginColumn,
int endLine,
int endColumn,
int modifiers,
List<AnnotationExpr> annotations,
Type type,
VariableDeclaratorId id,
Expression expression) |
TypeDeclaration(int beginLine,
int beginColumn,
int endLine,
int endColumn,
List<AnnotationExpr> annotations,
JavadocComment javaDoc,
int modifiers,
String name,
List<BodyDeclaration> members) |
TypeDeclaration(List<AnnotationExpr> annotations,
JavadocComment javaDoc,
int modifiers,
String name,
List<BodyDeclaration> members) |
Modifier and Type | Class and Description |
---|---|
class |
MarkerAnnotationExpr |
class |
NormalAnnotationExpr |
class |
SingleMemberAnnotationExpr |
Modifier and Type | Method and Description |
---|---|
List<AnnotationExpr> |
VariableDeclarationExpr.getAnnotations() |
Modifier and Type | Method and Description |
---|---|
void |
VariableDeclarationExpr.setAnnotations(List<AnnotationExpr> annotations) |
Constructor and Description |
---|
VariableDeclarationExpr(int beginLine,
int beginColumn,
int endLine,
int endColumn,
int modifiers,
List<AnnotationExpr> annotations,
Type type,
List<VariableDeclarator> vars) |
Copyright © 2014. All Rights Reserved.