Uses of Class
com.github.antlrjavaparser.api.expr.AnnotationExpr

Packages that use AnnotationExpr
com.github.antlrjavaparser.adapter   
com.github.antlrjavaparser.api   
com.github.antlrjavaparser.api.body   
com.github.antlrjavaparser.api.expr   
 

Uses of AnnotationExpr in com.github.antlrjavaparser.adapter
 

Methods in com.github.antlrjavaparser.adapter that return AnnotationExpr
 AnnotationExpr AnnotationContextAdapter.adapt(Java7Parser.AnnotationContext context)
           
 

Methods in com.github.antlrjavaparser.adapter that return types with arguments of type AnnotationExpr
 List<AnnotationExpr> AnnotationsContextAdapter.adapt(Java7Parser.AnnotationsContext context)
           
 

Uses of AnnotationExpr in com.github.antlrjavaparser.api
 

Methods in com.github.antlrjavaparser.api that return types with arguments of type AnnotationExpr
 List<AnnotationExpr> PackageDeclaration.getAnnotations()
          Retrieves the list of annotations declared before the package declaration.
 

Method parameters in com.github.antlrjavaparser.api with type arguments of type AnnotationExpr
 void PackageDeclaration.setAnnotations(List<AnnotationExpr> annotations)
           
 

Constructor parameters in com.github.antlrjavaparser.api with type arguments of type AnnotationExpr
PackageDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, List<AnnotationExpr> annotations, NameExpr name)
           
PackageDeclaration(List<AnnotationExpr> annotations, NameExpr name)
           
 

Uses of AnnotationExpr in com.github.antlrjavaparser.api.body
 

Methods in com.github.antlrjavaparser.api.body that return types with arguments of type AnnotationExpr
 List<AnnotationExpr> Resource.getAnnotations()
           
 List<AnnotationExpr> Parameter.getAnnotations()
           
 List<AnnotationExpr> CatchParameter.getAnnotations()
           
 List<AnnotationExpr> BodyDeclaration.getAnnotations()
           
 

Method parameters in com.github.antlrjavaparser.api.body with type arguments of type AnnotationExpr
 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 parameters in com.github.antlrjavaparser.api.body with type arguments of type AnnotationExpr
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)
           
 

Uses of AnnotationExpr in com.github.antlrjavaparser.api.expr
 

Subclasses of AnnotationExpr in com.github.antlrjavaparser.api.expr
 class MarkerAnnotationExpr
           
 class NormalAnnotationExpr
           
 class SingleMemberAnnotationExpr
           
 

Methods in com.github.antlrjavaparser.api.expr that return types with arguments of type AnnotationExpr
 List<AnnotationExpr> VariableDeclarationExpr.getAnnotations()
           
 

Method parameters in com.github.antlrjavaparser.api.expr with type arguments of type AnnotationExpr
 void VariableDeclarationExpr.setAnnotations(List<AnnotationExpr> annotations)
           
 

Constructor parameters in com.github.antlrjavaparser.api.expr with type arguments of type AnnotationExpr
VariableDeclarationExpr(int beginLine, int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, Type type, List<VariableDeclarator> vars)
           
 



Copyright © 2013. All Rights Reserved.