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

Packages that use Type
com.thoughtworks.qdox.model   
 

Uses of Type in com.thoughtworks.qdox.model
 

Fields in com.thoughtworks.qdox.model declared as Type
private  Type JavaParameter.type
           
private  Type BeanProperty.type
           
private  Type JavaField.type
           
protected  Type JavaMethod.returns
           
private  Type[] JavaMethod.exceptions
           
static Type[] Type.EMPTY_ARRAY
           
private static Type JavaClass.OBJECT
           
private  Type JavaClass.type
           
private  Type JavaClass.superClass
           
private  Type[] JavaClass.implementz
           
 

Methods in com.thoughtworks.qdox.model that return Type
private  Type ModelBuilder.createType(java.lang.String typeName, int dimensions)
           
 Type JavaParameter.getType()
           
 Type BeanProperty.getType()
           
 Type JavaField.getType()
           
 Type JavaMethod.getReturns()
           
 Type[] JavaMethod.getExceptions()
           
 Type JavaMethod.getPropertyType()
           
static Type Type.createUnresolved(java.lang.String name, int dimensions, JavaClassParent context)
           
 Type JavaClass.getSuperClass()
           
 Type[] JavaClass.getImplements()
           
 Type JavaClass.asType()
           
 

Methods in com.thoughtworks.qdox.model with parameters of type Type
 void BeanProperty.setType(Type type)
           
 void JavaField.setType(Type type)
           
 void JavaMethod.setReturns(Type returns)
           
 void JavaMethod.setExceptions(Type[] exceptions)
           
 boolean JavaMethod.signatureMatches(java.lang.String name, Type[] parameterTypes)
           
 boolean Type.isA(Type type)
           
 void JavaClass.setSuperClass(Type type)
           
 void JavaClass.setImplementz(Type[] implementz)
           
 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)
           
 

Constructors in com.thoughtworks.qdox.model with parameters of type Type
JavaParameter(Type type, java.lang.String name)