Class WildcardTypeDef
- java.lang.Object
-
- com.thoughtworks.qdox.parser.structs.TypeDef
-
- com.thoughtworks.qdox.parser.structs.WildcardTypeDef
-
public class WildcardTypeDef extends TypeDef
WildcardTypeDef must be a subclass of TypeDef, so it can be used in other classes. But here are only 2 fields interesting: typeDef and wildcardExpressionType typeDef itself can be generic, so it must be resolvable wildcardExpressionType is super or extends
-
-
Field Summary
Fields Modifier and Type Field Description private TypeDef
typeDef
private java.lang.String
wildcardExpressionType
-
Constructor Summary
Constructors Constructor Description WildcardTypeDef()
WildcardTypeDef(TypeDef typeDef, java.lang.String wildcardExpressionType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TypeDef
getTypeDef()
java.lang.String
getWildcardExpressionType()
-
Methods inherited from class com.thoughtworks.qdox.parser.structs.TypeDef
equals, getActualArgumentTypes, getDimensions, getName, hashCode, setActualArgumentTypes, setDimensions
-
-
-
-
Field Detail
-
typeDef
private TypeDef typeDef
-
wildcardExpressionType
private java.lang.String wildcardExpressionType
-
-
Constructor Detail
-
WildcardTypeDef
public WildcardTypeDef()
-
WildcardTypeDef
public WildcardTypeDef(TypeDef typeDef, java.lang.String wildcardExpressionType)
-
-
Method Detail
-
getTypeDef
public TypeDef getTypeDef()
-
getWildcardExpressionType
public java.lang.String getWildcardExpressionType()
-
-