Uses of Class
com.thoughtworks.qdox.model.Type

Packages that use Type
com.thoughtworks.qdox.model   
com.thoughtworks.qdox.model.annotation   
com.thoughtworks.qdox.parser   
 

Uses of Type in com.thoughtworks.qdox.model
 

Subclasses of Type in com.thoughtworks.qdox.model
 class TypeVariable
           
 class WildcardType
          This class supports both the 'super' and 'extends' wildcards.
 

Fields in com.thoughtworks.qdox.model declared as Type
private  Type[] Type.actualArgumentTypes
           
private static Type JavaClass.ANNOTATION
           
private  Type[] TypeVariable.bounds
           
static Type[] Type.EMPTY_ARRAY
           
private static Type JavaClass.ENUM
           
private  Type[] JavaMethod.exceptions
           
private  Type[] JavaClass.implementz
           
private static Type JavaClass.OBJECT
           
private  Type JavaMethod.returns
           
private  Type JavaClass.superClass
           
private  Type JavaClass.type
           
private  Type BeanProperty.type
           
private  Type JavaParameter.type
           
private  Type JavaField.type
           
private  Type Annotation.type
           
static Type Type.VOID
           
 

Methods in com.thoughtworks.qdox.model that return Type
 Type JavaClass.asType()
           
 Type ModelBuilder.createType(java.lang.String typeName, int dimensions)
           
 Type ModelBuilder.createType(TypeDef typeDef)
           
 Type ModelBuilder.createType(TypeDef typeDef, int dimensions)
          this one is specific for those cases where dimensions can be part of both the type and identifier i.e.
static Type Type.createUnresolved(java.lang.String name, int dimensions, JavaClassParent context)
           
static Type Type.createUnresolved(TypeDef typeDef, int dimensions, JavaClassParent context)
           
static Type Type.createUnresolved(TypeDef typeDef, JavaClassParent context)
           
 Type[] JavaMethod.getExceptions()
           
 Type[] JavaClass.getImplements()
           
 Type JavaMethod.getPropertyType()
           
 Type JavaMethod.getReturns()
           
 Type JavaClass.getSuperClass()
           
 Type BeanProperty.getType()
           
 Type JavaParameter.getType()
           
 Type JavaField.getType()
           
 Type Annotation.getType()
           
 

Methods in com.thoughtworks.qdox.model with parameters of type Type
 JavaMethod JavaClass.getMethodBySignature(java.lang.String name, Type[] parameterTypes)
           
 JavaMethod JavaClass.getMethodBySignature(java.lang.String name, Type[] parameterTypes, boolean superclasses)
           
 JavaMethod[] JavaClass.getMethodsBySignature(java.lang.String name, Type[] parameterTypes, boolean superclasses)
           
 boolean Type.isA(Type type)
           
 void JavaMethod.setExceptions(Type[] exceptions)
           
 void JavaClass.setImplementz(Type[] implementz)
           
 void JavaMethod.setReturns(Type returns)
           
 void JavaClass.setSuperClass(Type type)
           
 void BeanProperty.setType(Type type)
           
 void JavaField.setType(Type type)
           
 boolean JavaMethod.signatureMatches(java.lang.String name, Type[] parameterTypes)
           
 

Constructors in com.thoughtworks.qdox.model with parameters of type Type
Annotation(Type type, AbstractBaseJavaEntity context, java.util.Map namedParameters, int lineNumber)
           
Annotation(Type type, int line)
           
JavaField(Type type, java.lang.String name)
           
JavaMethod(Type returns, java.lang.String name)
           
JavaParameter(Type type, java.lang.String name)
           
JavaParameter(Type type, java.lang.String name, boolean varArgs)
           
 

Uses of Type in com.thoughtworks.qdox.model.annotation
 

Fields in com.thoughtworks.qdox.model.annotation declared as Type
private  Type AnnotationTypeRef.type
           
private  Type AnnotationCast.type
           
 

Methods in com.thoughtworks.qdox.model.annotation that return Type
 Type AnnotationTypeRef.getType()
           
 Type AnnotationCast.getType()
           
 

Constructors in com.thoughtworks.qdox.model.annotation with parameters of type Type
AnnotationCast(Type type, AnnotationValue value)
           
AnnotationTypeRef(Type type)
           
 

Uses of Type in com.thoughtworks.qdox.parser
 

Methods in com.thoughtworks.qdox.parser that return Type
 Type Builder.createType(java.lang.String name, int dimensions)
          Deprecated.  
 Type Builder.createType(TypeDef name)