Uses of Class
pt.compiler.parser.ast.type.ClassOrInterfaceType

Packages that use ClassOrInterfaceType
pt.compiler.parser   
pt.compiler.parser.ast   
pt.compiler.parser.ast.body   
pt.compiler.parser.ast.expr   
pt.compiler.parser.ast.type   
pt.compiler.parser.ast.visitor   
 

Uses of ClassOrInterfaceType in pt.compiler.parser
 

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

Uses of ClassOrInterfaceType in pt.compiler.parser.ast
 

Methods in pt.compiler.parser.ast that return types with arguments of type ClassOrInterfaceType
 java.util.List<ClassOrInterfaceType> TypeParameter.getTypeBound()
           
 

Constructor parameters in pt.compiler.parser.ast with type arguments of type ClassOrInterfaceType
TypeParameter(int line, int column, java.lang.String name, java.util.List<ClassOrInterfaceType> typeBound)
           
 

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

Methods in pt.compiler.parser.ast.body that return types with arguments of type ClassOrInterfaceType
 java.util.List<ClassOrInterfaceType> ClassOrInterfaceDeclaration.getExtends()
           
 java.util.List<ClassOrInterfaceType> EnumDeclaration.getImplements()
           
 java.util.List<ClassOrInterfaceType> ClassOrInterfaceDeclaration.getImplements()
           
 

Constructor parameters in pt.compiler.parser.ast.body with type arguments of type ClassOrInterfaceType
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)
           
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)
           
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)
           
 

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

Methods in pt.compiler.parser.ast.expr that return ClassOrInterfaceType
 ClassOrInterfaceType ObjectCreationExpr.getType()
           
 

Constructors in pt.compiler.parser.ast.expr with parameters of type ClassOrInterfaceType
ObjectCreationExpr(int line, int column, Expression scope, ClassOrInterfaceType type, java.util.List<Type> typeArgs, java.util.List<Expression> args, java.util.List<BodyDeclaration> anonymousBody)
           
 

Uses of ClassOrInterfaceType in pt.compiler.parser.ast.type
 

Methods in pt.compiler.parser.ast.type that return ClassOrInterfaceType
 ClassOrInterfaceType ClassOrInterfaceType.getScope()
           
 

Constructors in pt.compiler.parser.ast.type with parameters of type ClassOrInterfaceType
ClassOrInterfaceType(int line, int column, ClassOrInterfaceType scope, java.lang.String name, java.util.List<Type> typeArgs)
           
 

Uses of ClassOrInterfaceType in pt.compiler.parser.ast.visitor
 

Methods in pt.compiler.parser.ast.visitor with parameters of type ClassOrInterfaceType
 void VoidVisitor.visit(ClassOrInterfaceType n, A arg)
           
 R GenericVisitor.visit(ClassOrInterfaceType n, A arg)
           
 void TaskVisitor.visit(ClassOrInterfaceType n, java.lang.Object arg)
           
 void DumpVisitor.visit(ClassOrInterfaceType n, java.lang.Object arg)