Searched refs:typeVariables (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJGenerifiableImpl.java40 private List<JTypeVar> typeVariables = null; field in class:JGenerifiableImpl
45 if(typeVariables!=null) {
47 for (int i = 0; i < typeVariables.size(); i++) {
49 f.d(typeVariables.get(i));
58 if(typeVariables==null)
59 typeVariables = new ArrayList<JTypeVar>(3);
60 typeVariables.add(v);
73 if(typeVariables==null)
76 return typeVariables.toArray(new JTypeVar[typeVariables
[all...]
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DHashCodeTest.java46 Set<TypeVariable> typeVariables = new HashSet<TypeVariable>();
59 typeVariables.add(tv);
69 if (!typeVariables.remove(tv))
74 if (typeVariables.size() != 0 )
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DClassUseMapper.java397 TypeVariable[] typeVariables;
399 typeVariables = ((ClassDoc) doc).typeParameters();
417 typeVariables = ((ExecutableMemberDoc) doc).typeParameters();
425 for (int i = 0; i < typeVariables.length; i++) {
426 Type[] bounds = typeVariables[i].bounds();

Completed in 93 milliseconds