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

Packages that use Type
pt.compiler.helper   
pt.compiler.parser   
pt.compiler.parser.ast.body   
pt.compiler.parser.ast.expr   
pt.compiler.parser.ast.stmt   
pt.compiler.parser.ast.type   
 

Uses of Type in pt.compiler.helper
 

Methods in pt.compiler.helper with parameters of type Type
static java.lang.String SourceHelper.makeBoxedIfPrimitive(Type type)
          Returns the given type as a boxed type if possible.
 

Uses of Type in pt.compiler.parser
 

Methods in pt.compiler.parser that return Type
 Type JavaParser.ResultType()
           
 Type JavaParser.Type()
           
 Type JavaParser.TypeArgument()
           
 

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

Methods in pt.compiler.parser.ast.body that return Type
 Type Parameter.getType()
           
 Type MethodDeclaration.getType()
           
 Type FieldDeclaration.getType()
           
 Type AnnotationMemberDeclaration.getType()
           
 

Constructors in pt.compiler.parser.ast.body with parameters of type Type
AnnotationMemberDeclaration(int line, int column, JavadocComment javaDoc, int modifiers, java.util.List<AnnotationExpr> annotations, Type type, java.lang.String name, Expression defaultValue)
           
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 Type in pt.compiler.parser.ast.expr
 

Methods in pt.compiler.parser.ast.expr that return Type
 Type VariableDeclarationExpr.getType()
           
 Type InstanceOfExpr.getType()
           
 Type ClassExpr.getType()
           
 Type CastExpr.getType()
           
 Type ArrayCreationExpr.getType()
           
 

Methods in pt.compiler.parser.ast.expr that return types with arguments of type Type
 java.util.List<Type> ObjectCreationExpr.getTypeArgs()
           
 java.util.List<Type> MethodCallExpr.getTypeArgs()
           
 java.util.List<Type> FieldAccessExpr.getTypeArgs()
           
 java.util.List<Type> ArrayCreationExpr.getTypeArgs()
           
 

Constructors in pt.compiler.parser.ast.expr with parameters of type Type
ArrayCreationExpr(int line, int column, Type type, java.util.List<Type> typeArgs, int arrayCount, ArrayInitializerExpr initializer)
           
ArrayCreationExpr(int line, int column, Type type, java.util.List<Type> typeArgs, java.util.List<Expression> dimensions, int arrayCount)
           
CastExpr(int line, int column, Type type, Expression expr)
           
ClassExpr(int line, int column, Type type)
           
InstanceOfExpr(int line, int column, Expression expr, Type type)
           
VariableDeclarationExpr(int line, int column, int modifiers, java.util.List<AnnotationExpr> annotations, Type type, java.util.List<VariableDeclarator> vars)
           
 

Constructor parameters in pt.compiler.parser.ast.expr with type arguments of type Type
ArrayCreationExpr(int line, int column, Type type, java.util.List<Type> typeArgs, int arrayCount, ArrayInitializerExpr initializer)
           
ArrayCreationExpr(int line, int column, Type type, java.util.List<Type> typeArgs, java.util.List<Expression> dimensions, int arrayCount)
           
FieldAccessExpr(int line, int column, Expression scope, java.util.List<Type> typeArgs, java.lang.String field)
           
MethodCallExpr(int line, int column, Expression scope, java.util.List<Type> typeArgs, java.lang.String name, java.util.List<Expression> args)
           
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 Type in pt.compiler.parser.ast.stmt
 

Methods in pt.compiler.parser.ast.stmt that return types with arguments of type Type
 java.util.List<Type> ExplicitConstructorInvocationStmt.getTypeArgs()
           
 

Constructor parameters in pt.compiler.parser.ast.stmt with type arguments of type Type
ExplicitConstructorInvocationStmt(int line, int column, java.util.List<Type> typeArgs, boolean isThis, Expression expr, java.util.List<Expression> args)
           
 

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

Subclasses of Type in pt.compiler.parser.ast.type
 class ClassOrInterfaceType
           
 class PrimitiveType
           
 class ReferenceType
           
 class VoidType
           
 class WildcardType
           
 

Methods in pt.compiler.parser.ast.type that return Type
 Type ReferenceType.getType()
           
 

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

Constructors in pt.compiler.parser.ast.type with parameters of type Type
ReferenceType(int line, int column, Type type, int arrayCount)
           
 

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