Uses of Class
pt.compiler.parser.ast.body.TypeDeclaration

Packages that use TypeDeclaration
pt.compiler.parser   
pt.compiler.parser.ast   
pt.compiler.parser.ast.body   
pt.compiler.parser.ast.stmt   
 

Uses of TypeDeclaration in pt.compiler.parser
 

Methods in pt.compiler.parser that return TypeDeclaration
 TypeDeclaration JavaParser.TypeDeclaration()
           
 

Uses of TypeDeclaration in pt.compiler.parser.ast
 

Methods in pt.compiler.parser.ast that return types with arguments of type TypeDeclaration
 java.util.List<TypeDeclaration> CompilationUnit.getTypes()
           
 

Constructor parameters in pt.compiler.parser.ast with type arguments of type TypeDeclaration
CompilationUnit(int line, int column, PackageDeclaration pakage, java.util.List<ImportDeclaration> imports, java.util.List<TypeDeclaration> types, java.util.List<Comment> comments)
           
 

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

Subclasses of TypeDeclaration in pt.compiler.parser.ast.body
 class AnnotationDeclaration
           
 class ClassOrInterfaceDeclaration
           
 class EmptyTypeDeclaration
           
 class EnumDeclaration
           
 

Uses of TypeDeclaration in pt.compiler.parser.ast.stmt
 

Methods in pt.compiler.parser.ast.stmt that return TypeDeclaration
 TypeDeclaration TypeDeclarationStmt.getTypeDeclaration()
           
 

Constructors in pt.compiler.parser.ast.stmt with parameters of type TypeDeclaration
TypeDeclarationStmt(int line, int column, TypeDeclaration typeDecl)