Searched refs:formalTypeParameters (Results 1 – 4 of 4) sorted by relevance
63 TypeVariable<Constructor<T>>[] formalTypeParameters; field in Constructor72 formalTypeParameters = parser.formalTypeParameters; in initGenericTypes()127 return formalTypeParameters.clone(); in getTypeParameters()147 if (formalTypeParameters != null && formalTypeParameters.length > 0) { in toGenericString()149 for (int i = 0; i < formalTypeParameters.length; i++) { in toGenericString()150 appendGenericType(sb, formalTypeParameters[i]); in toGenericString()151 if (i < formalTypeParameters.length - 1) { in toGenericString()
67 private TypeVariable<Method>[] formalTypeParameters; field in Method76 formalTypeParameters = parser.formalTypeParameters; in initGenericTypes()111 return formalTypeParameters.clone(); in getTypeParameters()152 if (formalTypeParameters != null && formalTypeParameters.length > 0) { in toGenericString()154 for (int i = 0; i < formalTypeParameters.length; i++) { in toGenericString()155 appendGenericType(sb, formalTypeParameters[i]); in toGenericString()156 if (i < formalTypeParameters.length - 1) { in toGenericString()
71 public TypeVariable[] formalTypeParameters; field in GenericSignatureParser128 this.formalTypeParameters = ListOfVariables.empty; in parseForClass()132 this.formalTypeParameters = ListOfVariables.empty; in parseForClass()154 this.formalTypeParameters = ListOfVariables.empty; in parseForMethod()159 this.formalTypeParameters = ListOfVariables.empty; in parseForMethod()182 this.formalTypeParameters = ListOfVariables.empty; in parseForConstructor()186 this.formalTypeParameters = ListOfVariables.empty; in parseForConstructor()243 this.formalTypeParameters = typeParams.getArray(); in parseOptFormalTypeParameters()
1305 return parser.formalTypeParameters.clone(); in getTypeParameters()