Uses of Class
pt.compiler.parser.ast.expr.AnnotationExpr

Packages that use AnnotationExpr
pt.compiler.parser   
pt.compiler.parser.ast   
pt.compiler.parser.ast.body   
pt.compiler.parser.ast.expr   
 

Uses of AnnotationExpr in pt.compiler.parser
 

Methods in pt.compiler.parser that return AnnotationExpr
 AnnotationExpr JavaParser.Annotation()
           
 

Uses of AnnotationExpr in pt.compiler.parser.ast
 

Methods in pt.compiler.parser.ast that return types with arguments of type AnnotationExpr
 java.util.List<AnnotationExpr> PackageDeclaration.getAnnotations()
           
 

Constructor parameters in pt.compiler.parser.ast with type arguments of type AnnotationExpr
PackageDeclaration(int line, int column, java.util.List<AnnotationExpr> annotations, NameExpr name)
           
 

Uses of AnnotationExpr in pt.compiler.parser.ast.body
 

Methods in pt.compiler.parser.ast.body that return types with arguments of type AnnotationExpr
 java.util.List<AnnotationExpr> Parameter.getAnnotations()
           
 java.util.List<AnnotationExpr> MethodDeclaration.getAnnotations()
           
 java.util.List<AnnotationExpr> FieldDeclaration.getAnnotations()
           
 java.util.List<AnnotationExpr> EnumDeclaration.getAnnotations()
           
 java.util.List<AnnotationExpr> EnumConstantDeclaration.getAnnotations()
           
 java.util.List<AnnotationExpr> ConstructorDeclaration.getAnnotations()
           
 java.util.List<AnnotationExpr> ClassOrInterfaceDeclaration.getAnnotations()
           
 java.util.List<AnnotationExpr> AnnotationMemberDeclaration.getAnnotations()
           
 java.util.List<AnnotationExpr> AnnotationDeclaration.getAnnotations()
           
 

Constructor parameters in pt.compiler.parser.ast.body with type arguments of type AnnotationExpr
AnnotationDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, java.lang.String name, java.util.List<BodyDeclaration> members)
           
AnnotationMemberDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, Type type, java.lang.String name, Expression defaultValue)
           
ClassOrInterfaceDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, boolean isInterface, java.lang.String name, java.util.List<TypeParameter> typeParameters, java.util.List<ClassOrInterfaceType> extendsList, java.util.List<ClassOrInterfaceType> implementsList, java.util.List<BodyDeclaration> members)
           
ConstructorDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, java.util.List<TypeParameter> typeParameters, java.lang.String name, java.util.List<Parameter> parameters, java.util.List<NameExpr> throws_, BlockStmt block)
           
EnumConstantDeclaration(int line, int column, JavadocComment javaDoc, java.util.List<AnnotationExpr> annotations, java.lang.String name, java.util.List<Expression> args, java.util.List<BodyDeclaration> classBody)
           
EnumDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, java.lang.String name, java.util.List<ClassOrInterfaceType> implementsList, java.util.List<EnumConstantDeclaration> entries, java.util.List<BodyDeclaration> members)
           
FieldDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, Type type, java.util.List<VariableDeclarator> variables)
           
MethodDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, java.util.List<TypeParameter> typeParameters, Type type, java.lang.String name, java.util.List<Parameter> parameters, int arrayCount, java.util.List<NameExpr> throws_, BlockStmt block)
           
Parameter(int line, int column, int modifiers, java.util.List<AnnotationExpr> annotations, Type type, boolean isVarArgs, VariableDeclaratorId id)
           
 

Uses of AnnotationExpr in pt.compiler.parser.ast.expr
 

Subclasses of AnnotationExpr in pt.compiler.parser.ast.expr
 class MarkerAnnotationExpr
           
 class NormalAnnotationExpr
           
 class SingleMemberAnnotationExpr
           
 

Methods in pt.compiler.parser.ast.expr that return types with arguments of type AnnotationExpr
 java.util.List<AnnotationExpr> VariableDeclarationExpr.getAnnotations()
           
 

Constructor parameters in pt.compiler.parser.ast.expr with type arguments of type AnnotationExpr
VariableDeclarationExpr(int line, int column, int modifiers, java.util.List<AnnotationExpr> annotations, Type type, java.util.List<VariableDeclarator> vars)