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

Packages that use TypeDeclaration
com.github.antlrjavaparser   
com.github.antlrjavaparser.adapter   
com.github.antlrjavaparser.api   
com.github.antlrjavaparser.api.body   
com.github.antlrjavaparser.api.stmt   
 

Uses of TypeDeclaration in com.github.antlrjavaparser
 

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

Uses of TypeDeclaration in com.github.antlrjavaparser.adapter
 

Methods in com.github.antlrjavaparser.adapter that return TypeDeclaration
 TypeDeclaration ClassDeclarationContextAdapter.adapt(Java7Parser.ClassDeclarationContext context, AdapterParameters adapterParameters)
           
 TypeDeclaration ClassOrInterfaceDeclarationContextAdapter.adapt(Java7Parser.ClassOrInterfaceDeclarationContext context, AdapterParameters adapterParameters)
           
 TypeDeclaration InterfaceDeclarationContextAdapter.adapt(Java7Parser.InterfaceDeclarationContext context, AdapterParameters adapterParameters)
           
 TypeDeclaration NormalClassDeclarationContextAdapter.adapt(Java7Parser.NormalClassDeclarationContext context, AdapterParameters adapterParameters)
           
 TypeDeclaration TypeDeclarationContextAdapter.adapt(Java7Parser.TypeDeclarationContext context, AdapterParameters adapterParameters)
           
 

Uses of TypeDeclaration in com.github.antlrjavaparser.api
 

Methods in com.github.antlrjavaparser.api that return types with arguments of type TypeDeclaration
 List<TypeDeclaration> CompilationUnit.getTypes()
          Return the list of types declared in this compilation unit.
If there is no types declared, null is returned.
 

Method parameters in com.github.antlrjavaparser.api with type arguments of type TypeDeclaration
 void CompilationUnit.setTypes(List<TypeDeclaration> types)
          Sets the list of types declared in this compilation unit.
 

Constructor parameters in com.github.antlrjavaparser.api with type arguments of type TypeDeclaration
CompilationUnit(int beginLine, int beginColumn, int endLine, int endColumn, PackageDeclaration pakage, List<ImportDeclaration> imports, List<TypeDeclaration> types, List<Comment> comments)
           
CompilationUnit(PackageDeclaration pakage, List<ImportDeclaration> imports, List<TypeDeclaration> types, List<Comment> comments)
           
 

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

Subclasses of TypeDeclaration in com.github.antlrjavaparser.api.body
 class AnnotationDeclaration
           
 class ClassOrInterfaceDeclaration
           
 class EmptyTypeDeclaration
           
 class EnumDeclaration
           
 

Uses of TypeDeclaration in com.github.antlrjavaparser.api.stmt
 

Methods in com.github.antlrjavaparser.api.stmt that return TypeDeclaration
 TypeDeclaration TypeDeclarationStmt.getTypeDeclaration()
           
 

Methods in com.github.antlrjavaparser.api.stmt with parameters of type TypeDeclaration
 void TypeDeclarationStmt.setTypeDeclaration(TypeDeclaration typeDecl)
           
 

Constructors in com.github.antlrjavaparser.api.stmt with parameters of type TypeDeclaration
TypeDeclarationStmt(int beginLine, int beginColumn, int endLine, int endColumn, TypeDeclaration typeDecl)
           
TypeDeclarationStmt(TypeDeclaration typeDecl)
           
 



Copyright © 2013. All Rights Reserved.