Uses of Class
com.github.antlrjavaparser.api.body.BodyDeclaration

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

Uses of BodyDeclaration in com.github.antlrjavaparser
 

Methods in com.github.antlrjavaparser with parameters of type BodyDeclaration
static void ASTHelper.addMember(TypeDeclaration type, BodyDeclaration decl)
          Adds the given declaration to the specified type.
 

Uses of BodyDeclaration in com.github.antlrjavaparser.adapter
 

Methods in com.github.antlrjavaparser.adapter that return BodyDeclaration
 BodyDeclaration AnnotationMethodDeclarationContextAdapter.adapt(Java7Parser.AnnotationMethodDeclarationContext context)
           
 BodyDeclaration AnnotationTypeElementDeclarationContextAdapter.adapt(Java7Parser.AnnotationTypeElementDeclarationContext context)
           
 BodyDeclaration ClassBodyDeclarationContextAdapter.adapt(Java7Parser.ClassBodyDeclarationContext context)
           
 BodyDeclaration InterfaceBodyDeclarationContextAdapter.adapt(Java7Parser.InterfaceBodyDeclarationContext context)
           
 BodyDeclaration InterfaceFieldDeclarationContextAdapter.adapt(Java7Parser.InterfaceFieldDeclarationContext context)
           
 BodyDeclaration InterfaceMethodDeclarationContextAdapter.adapt(Java7Parser.InterfaceMethodDeclarationContext context)
           
 BodyDeclaration MemberDeclContextAdapter.adapt(Java7Parser.MemberDeclContext context)
           
 

Methods in com.github.antlrjavaparser.adapter that return types with arguments of type BodyDeclaration
 List<BodyDeclaration> AnnotationTypeBodyContextAdapter.adapt(Java7Parser.AnnotationTypeBodyContext context)
           
 List<BodyDeclaration> ClassBodyContextAdapter.adapt(Java7Parser.ClassBodyContext context)
           
 List<BodyDeclaration> EnumBodyContextAdapter.adapt(Java7Parser.EnumBodyContext context)
           
 List<BodyDeclaration> EnumBodyDeclarationsContextAdapter.adapt(Java7Parser.EnumBodyDeclarationsContext context)
           
 List<BodyDeclaration> InterfaceBodyContextAdapter.adapt(Java7Parser.InterfaceBodyContext context)
           
 

Methods in com.github.antlrjavaparser.adapter with parameters of type BodyDeclaration
static void AdapterUtil.setModifiers(Java7Parser.ModifiersContext modifiersContext, BodyDeclaration typeDeclaration)
           
static void AdapterUtil.setModifiers(List<Java7Parser.ModifierContext> modifierList, BodyDeclaration typeDeclaration)
           
 

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

Subclasses of BodyDeclaration in com.github.antlrjavaparser.api.body
 class AnnotationDeclaration
           
 class AnnotationMemberDeclaration
           
 class ClassOrInterfaceDeclaration
           
 class ConstructorDeclaration
           
 class EmptyMemberDeclaration
           
 class EmptyTypeDeclaration
           
 class EnumConstantDeclaration
           
 class EnumDeclaration
           
 class FieldDeclaration
           
 class InitializerDeclaration
           
 class MethodDeclaration
           
 class TypeDeclaration
           
 

Methods in com.github.antlrjavaparser.api.body that return types with arguments of type BodyDeclaration
 List<BodyDeclaration> EnumConstantDeclaration.getClassBody()
           
 List<BodyDeclaration> TypeDeclaration.getMembers()
           
 

Method parameters in com.github.antlrjavaparser.api.body with type arguments of type BodyDeclaration
 void EnumConstantDeclaration.setClassBody(List<BodyDeclaration> classBody)
           
 void TypeDeclaration.setMembers(List<BodyDeclaration> members)
           
 

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

Methods in com.github.antlrjavaparser.api.expr that return types with arguments of type BodyDeclaration
 List<BodyDeclaration> ObjectCreationExpr.getAnonymousClassBody()
           
 

Method parameters in com.github.antlrjavaparser.api.expr with type arguments of type BodyDeclaration
 void ObjectCreationExpr.setAnonymousClassBody(List<BodyDeclaration> anonymousClassBody)
           
 

Constructor parameters in com.github.antlrjavaparser.api.expr with type arguments of type BodyDeclaration
ObjectCreationExpr(int beginLine, int beginColumn, int endLine, int endColumn, Expression scope, ClassOrInterfaceType type, List<Type> typeArgs, List<Expression> args, List<BodyDeclaration> anonymousBody)
           
 



Copyright © 2013. All Rights Reserved.