Package com.thoughtworks.qdox.builder
Class TypeAssembler
java.lang.Object
com.thoughtworks.qdox.builder.TypeAssembler
An assembler to transform a
TypeDef
to a DefaultJavaType
- Since:
- 2.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic DefaultJavaType
createUnresolved
(TypeDef typeDef, int dimensions, TypeResolver typeResolver) this one is specific for those cases where dimensions can be part of both the type and identifier i.e.static DefaultJavaType
createUnresolved
(TypeDef typeDef, TypeResolver typeResolver)
-
Constructor Details
-
TypeAssembler
private TypeAssembler()
-
-
Method Details
-
createUnresolved
public static DefaultJavaType createUnresolved(TypeDef typeDef, int dimensions, TypeResolver typeResolver) this one is specific for those cases where dimensions can be part of both the type and identifier i.e. private String[] matrix[]; //field public abstract String[] getMatrix[](); //method- Parameters:
typeDef
- the type definitiondimensions
- the array-depthtypeResolver
- the typeResolver- Returns:
- the Type
-
createUnresolved
- Parameters:
typeDef
- the type definitiontypeResolver
- the typeResolver- Returns:
- the Type
-