Uses of Class
com.github.antlrjavaparser.api.type.Type

Packages that use Type
com.github.antlrjavaparser   
com.github.antlrjavaparser.adapter   
com.github.antlrjavaparser.api.body   
com.github.antlrjavaparser.api.expr   
com.github.antlrjavaparser.api.stmt   
com.github.antlrjavaparser.api.type   
 

Uses of Type in com.github.antlrjavaparser
 

Methods in com.github.antlrjavaparser with parameters of type Type
static FieldDeclaration ASTHelper.createFieldDeclaration(int modifiers, Type type, String name)
          Creates a FieldDeclaration.
static FieldDeclaration ASTHelper.createFieldDeclaration(int modifiers, Type type, VariableDeclarator variable)
          Creates a FieldDeclaration.
static Parameter ASTHelper.createParameter(Type type, String name)
          Creates a new Parameter.
static VariableDeclarationExpr ASTHelper.createVariableDeclarationExpr(Type type, String name)
          Creates a VariableDeclarationExpr.
 

Uses of Type in com.github.antlrjavaparser.adapter
 

Methods in com.github.antlrjavaparser.adapter that return Type
 Type CreatedNameContextAdapter.adapt(Java7Parser.CreatedNameContext context, AdapterParameters adapterParameters)
           
 Type TypeArgumentContextAdapter.adapt(Java7Parser.TypeArgumentContext context, AdapterParameters adapterParameters)
           
 Type TypeContextAdapter.adapt(Java7Parser.TypeContext context, AdapterParameters adapterParameters)
           
 

Methods in com.github.antlrjavaparser.adapter that return types with arguments of type Type
 List<Type> TypeArgumentsContextAdapter.adapt(Java7Parser.TypeArgumentsContext context, AdapterParameters adapterParameters)
           
 List<Type> TypeListContextAdapter.adapt(Java7Parser.TypeListContext context, AdapterParameters adapterParameters)
           
 

Method parameters in com.github.antlrjavaparser.adapter with type arguments of type Type
static List<ClassOrInterfaceType> AdapterUtil.convertTypeList(List<Type> typeList)
           
 

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

Methods in com.github.antlrjavaparser.api.body that return Type
 Type Resource.getType()
           
 Type Parameter.getType()
           
 Type MethodDeclaration.getType()
           
 Type FieldDeclaration.getType()
           
 Type AnnotationMemberDeclaration.getType()
           
 

Methods in com.github.antlrjavaparser.api.body that return types with arguments of type Type
 List<Type> CatchParameter.getTypeList()
           
 

Methods in com.github.antlrjavaparser.api.body with parameters of type Type
 void Resource.setType(Type type)
           
 void Parameter.setType(Type type)
           
 void MethodDeclaration.setType(Type type)
           
 void FieldDeclaration.setType(Type type)
           
 void AnnotationMemberDeclaration.setType(Type type)
           
 

Method parameters in com.github.antlrjavaparser.api.body with type arguments of type Type
 void CatchParameter.setTypeList(List<Type> typeList)
           
 

Constructors in com.github.antlrjavaparser.api.body with parameters of type Type
AnnotationMemberDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, Type type, String name, Expression defaultValue)
           
AnnotationMemberDeclaration(int modifiers, Type type, String name, Expression defaultValue)
           
AnnotationMemberDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, Type type, String name, Expression defaultValue)
           
FieldDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, Type type, List<VariableDeclarator> variables)
           
FieldDeclaration(int modifiers, Type type, List<VariableDeclarator> variables)
           
FieldDeclaration(int modifiers, Type type, VariableDeclarator variable)
           
FieldDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, Type type, List<VariableDeclarator> variables)
           
MethodDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, List<TypeParameter> typeParameters, Type type, String name, List<Parameter> parameters, int arrayCount, List<NameExpr> throws_, BlockStmt block)
           
MethodDeclaration(int modifiers, Type type, String name)
           
MethodDeclaration(int modifiers, Type type, String name, List<Parameter> parameters)
           
MethodDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, List<TypeParameter> typeParameters, Type type, String name, List<Parameter> parameters, int arrayCount, List<NameExpr> throws_, BlockStmt block)
           
Parameter(int beginLine, int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, Type type, boolean isVarArgs, VariableDeclaratorId id)
           
Parameter(int modifiers, Type type, VariableDeclaratorId id)
           
Parameter(Type type, VariableDeclaratorId id)
           
Resource(int beginLine, int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, Type type, VariableDeclaratorId id, Expression expression)
           
Resource(int modifiers, Type type, VariableDeclaratorId id, Expression expression)
           
Resource(Type type, VariableDeclaratorId id)
           
 

Constructor parameters in com.github.antlrjavaparser.api.body with type arguments of type Type
CatchParameter(int beginLine, int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, List<Type> typeList, VariableDeclaratorId id)
           
CatchParameter(int modifiers, List<Type> typeList, VariableDeclaratorId id)
           
CatchParameter(List<Type> typeList, VariableDeclaratorId id)
           
 

Uses of Type in com.github.antlrjavaparser.api.expr
 

Methods in com.github.antlrjavaparser.api.expr that return Type
 Type VariableDeclarationExpr.getType()
           
 Type InstanceOfExpr.getType()
           
 Type ClassExpr.getType()
           
 Type CastExpr.getType()
           
 Type ArrayCreationExpr.getType()
           
 

Methods in com.github.antlrjavaparser.api.expr that return types with arguments of type Type
 List<Type> ObjectCreationExpr.getTypeArgs()
           
 List<Type> MethodCallExpr.getTypeArgs()
           
 List<Type> FieldAccessExpr.getTypeArgs()
           
 

Methods in com.github.antlrjavaparser.api.expr with parameters of type Type
 void VariableDeclarationExpr.setType(Type type)
           
 void InstanceOfExpr.setType(Type type)
           
 void ClassExpr.setType(Type type)
           
 void CastExpr.setType(Type type)
           
 void ArrayCreationExpr.setType(Type type)
           
 

Method parameters in com.github.antlrjavaparser.api.expr with type arguments of type Type
 void ObjectCreationExpr.setTypeArgs(List<Type> typeArgs)
           
 void MethodCallExpr.setTypeArgs(List<Type> typeArgs)
           
 void FieldAccessExpr.setTypeArgs(List<Type> typeArgs)
           
 

Constructors in com.github.antlrjavaparser.api.expr with parameters of type Type
ArrayCreationExpr(int beginLine, int beginColumn, int endLine, int endColumn, Type type, int arrayCount, ArrayInitializerExpr initializer)
           
ArrayCreationExpr(int beginLine, int beginColumn, int endLine, int endColumn, Type type, List<Expression> dimensions, int arrayCount)
           
ArrayCreationExpr(Type type, int arrayCount, ArrayInitializerExpr initializer)
           
ArrayCreationExpr(Type type, List<Expression> dimensions, int arrayCount)
           
CastExpr(int beginLine, int beginColumn, int endLine, int endColumn, Type type, Expression expr)
           
CastExpr(Type type, Expression expr)
           
ClassExpr(int beginLine, int beginColumn, int endLine, int endColumn, Type type)
           
ClassExpr(Type type)
           
InstanceOfExpr(Expression expr, Type type)
           
InstanceOfExpr(int beginLine, int beginColumn, int endLine, int endColumn, Expression expr, Type type)
           
VariableDeclarationExpr(int beginLine, int beginColumn, int endLine, int endColumn, int modifiers, List<AnnotationExpr> annotations, Type type, List<VariableDeclarator> vars)
           
VariableDeclarationExpr(int modifiers, Type type, List<VariableDeclarator> vars)
           
VariableDeclarationExpr(Type type, List<VariableDeclarator> vars)
           
 

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

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

Methods in com.github.antlrjavaparser.api.stmt that return types with arguments of type Type
 List<Type> ExplicitConstructorInvocationStmt.getTypeArgs()
           
 

Method parameters in com.github.antlrjavaparser.api.stmt with type arguments of type Type
 void ExplicitConstructorInvocationStmt.setTypeArgs(List<Type> typeArgs)
           
 

Constructor parameters in com.github.antlrjavaparser.api.stmt with type arguments of type Type
ExplicitConstructorInvocationStmt(int beginLine, int beginColumn, int endLine, int endColumn, List<Type> typeArgs, boolean isThis, Expression expr, List<Expression> args)
           
 

Uses of Type in com.github.antlrjavaparser.api.type
 

Subclasses of Type in com.github.antlrjavaparser.api.type
 class ClassOrInterfaceType
           
 class PrimitiveType
           
 class ReferenceType
           
 class VoidType
           
 class WildcardType
           
 

Methods in com.github.antlrjavaparser.api.type that return Type
 Type ReferenceType.getType()
           
 

Methods in com.github.antlrjavaparser.api.type that return types with arguments of type Type
 List<Type> ClassOrInterfaceType.getTypeArgs()
           
 

Methods in com.github.antlrjavaparser.api.type with parameters of type Type
 void ReferenceType.setType(Type type)
           
 

Method parameters in com.github.antlrjavaparser.api.type with type arguments of type Type
 void ClassOrInterfaceType.setTypeArgs(List<Type> typeArgs)
           
 

Constructors in com.github.antlrjavaparser.api.type with parameters of type Type
ReferenceType(int beginLine, int beginColumn, int endLine, int endColumn, Type type, int arrayCount)
           
ReferenceType(Type type)
           
ReferenceType(Type type, int arrayCount)
           
 

Constructor parameters in com.github.antlrjavaparser.api.type with type arguments of type Type
ClassOrInterfaceType(int beginLine, int beginColumn, int endLine, int endColumn, ClassOrInterfaceType scope, String name, List<Type> typeArgs)
           
 



Copyright © 2013. All Rights Reserved.