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

Packages that use ClassOrInterfaceType
com.github.antlrjavaparser.adapter   
com.github.antlrjavaparser.api   
com.github.antlrjavaparser.api.body   
com.github.antlrjavaparser.api.expr   
com.github.antlrjavaparser.api.type   
com.github.antlrjavaparser.api.visitor   
 

Uses of ClassOrInterfaceType in com.github.antlrjavaparser.adapter
 

Methods in com.github.antlrjavaparser.adapter that return ClassOrInterfaceType
 ClassOrInterfaceType ClassOrInterfaceTypeContextAdapter.adapt(Java7Parser.ClassOrInterfaceTypeContext context, AdapterParameters adapterParameters)
           
 

Methods in com.github.antlrjavaparser.adapter that return types with arguments of type ClassOrInterfaceType
 List<ClassOrInterfaceType> TypeBoundContextAdapter.adapt(Java7Parser.TypeBoundContext context, AdapterParameters adapterParameters)
           
static List<ClassOrInterfaceType> AdapterUtil.convertTypeList(List<Type> typeList)
           
 

Uses of ClassOrInterfaceType in com.github.antlrjavaparser.api
 

Methods in com.github.antlrjavaparser.api that return types with arguments of type ClassOrInterfaceType
 List<ClassOrInterfaceType> TypeParameter.getTypeBound()
          Return the list of ClassOrInterfaceType that this parameter extends.
 

Method parameters in com.github.antlrjavaparser.api with type arguments of type ClassOrInterfaceType
 void TypeParameter.setTypeBound(List<ClassOrInterfaceType> typeBound)
          Sets the list o types.
 

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

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

Methods in com.github.antlrjavaparser.api.body that return types with arguments of type ClassOrInterfaceType
 List<ClassOrInterfaceType> ClassOrInterfaceDeclaration.getExtends()
           
 List<ClassOrInterfaceType> EnumDeclaration.getImplements()
           
 List<ClassOrInterfaceType> ClassOrInterfaceDeclaration.getImplements()
           
 

Method parameters in com.github.antlrjavaparser.api.body with type arguments of type ClassOrInterfaceType
 void ClassOrInterfaceDeclaration.setExtends(List<ClassOrInterfaceType> extendsList)
           
 void EnumDeclaration.setImplements(List<ClassOrInterfaceType> implementsList)
           
 void ClassOrInterfaceDeclaration.setImplements(List<ClassOrInterfaceType> implementsList)
           
 

Constructor parameters in com.github.antlrjavaparser.api.body with type arguments of type ClassOrInterfaceType
ClassOrInterfaceDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, boolean isInterface, String name, List<TypeParameter> typeParameters, List<ClassOrInterfaceType> extendsList, List<ClassOrInterfaceType> implementsList, List<BodyDeclaration> members)
           
ClassOrInterfaceDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, boolean isInterface, String name, List<TypeParameter> typeParameters, List<ClassOrInterfaceType> extendsList, List<ClassOrInterfaceType> implementsList, List<BodyDeclaration> members)
           
ClassOrInterfaceDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, boolean isInterface, String name, List<TypeParameter> typeParameters, List<ClassOrInterfaceType> extendsList, List<ClassOrInterfaceType> implementsList, List<BodyDeclaration> members)
           
ClassOrInterfaceDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, boolean isInterface, String name, List<TypeParameter> typeParameters, List<ClassOrInterfaceType> extendsList, List<ClassOrInterfaceType> implementsList, List<BodyDeclaration> members)
           
EnumDeclaration(int beginLine, int beginColumn, int endLine, int endColumn, JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, String name, List<ClassOrInterfaceType> implementsList, List<EnumConstantDeclaration> entries, List<BodyDeclaration> members)
           
EnumDeclaration(JavadocComment javaDoc, int modifiers, List<AnnotationExpr> annotations, String name, List<ClassOrInterfaceType> implementsList, List<EnumConstantDeclaration> entries, List<BodyDeclaration> members)
           
 

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

Methods in com.github.antlrjavaparser.api.expr that return ClassOrInterfaceType
 ClassOrInterfaceType ObjectCreationExpr.getType()
           
 

Methods in com.github.antlrjavaparser.api.expr with parameters of type ClassOrInterfaceType
 void ObjectCreationExpr.setType(ClassOrInterfaceType type)
           
 

Constructors in com.github.antlrjavaparser.api.expr with parameters of type ClassOrInterfaceType
ObjectCreationExpr(Expression scope, ClassOrInterfaceType type, 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 ClassOrInterfaceType in com.github.antlrjavaparser.api.type
 

Methods in com.github.antlrjavaparser.api.type that return ClassOrInterfaceType
 ClassOrInterfaceType ClassOrInterfaceType.getScope()
           
 

Methods in com.github.antlrjavaparser.api.type with parameters of type ClassOrInterfaceType
 void ClassOrInterfaceType.setScope(ClassOrInterfaceType scope)
           
 

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

Uses of ClassOrInterfaceType in com.github.antlrjavaparser.api.visitor
 

Methods in com.github.antlrjavaparser.api.visitor with parameters of type ClassOrInterfaceType
 void VoidVisitorAdapter.visit(ClassOrInterfaceType n, A arg)
           
 void VoidVisitor.visit(ClassOrInterfaceType n, A arg)
           
 Node ModifierVisitorAdapter.visit(ClassOrInterfaceType n, A arg)
           
 R GenericVisitorAdapter.visit(ClassOrInterfaceType n, A arg)
           
 R GenericVisitor.visit(ClassOrInterfaceType n, A arg)
           
 Boolean EqualsVisitor.visit(ClassOrInterfaceType n1, Node arg)
           
 void DumpVisitor.visit(ClassOrInterfaceType n, Object arg)
           
 



Copyright © 2013. All Rights Reserved.