Searched refs:typeParams (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/reflect/generics/repository/
H A DGenericDeclRepository.java45 private TypeVariable[] typeParams; // caches the formal type parameters field in class:GenericDeclRepository
68 if (typeParams == null) { // lazily initialize type parameters
80 typeParams = tps; // cache overall result
82 return typeParams.clone(); // return cached result
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJGenerifiable.java55 JTypeVar[] typeParams(); method in interface:JGenerifiable
H A DJGenerifiableImpl.java72 public JTypeVar[] typeParams() { method in class:JGenerifiableImpl
H A DJNarrowedClass.java153 return base.substituteParams(basis.typeParams(),args);
163 return core.next().substituteParams(basis.typeParams(),args);
H A DJClass.java108 public JTypeVar[] typeParams() { method in class:JClass
H A DJCodeModel.java625 public JTypeVar[] typeParams() { method in class:JCodeModel.JReferencedClass
627 return super.typeParams();
H A DJDefinedClass.java847 public JTypeVar[] typeParams() { method in class:JDefinedClass
848 return generifiable.typeParams();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/fmt/
H A DJStaticJavaFile.java192 private final JTypeVar[] typeParams; field in class:JStaticJavaFile.JStaticClass
197 typeParams = new JTypeVar[0];
231 public JTypeVar[] typeParams() { method in class:JStaticJavaFile.JStaticClass
232 return typeParams;
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DPrintAP.java368 private void printFormalTypeParameterSet(Collection<TypeParameterDeclaration> typeParams, boolean pad) { argument
369 if (typeParams.size() != 0) {
373 for(TypeParameterDeclaration tpd: typeParams) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DPrintingProcessor.java371 List<? extends TypeParameterElement> typeParams = e.getTypeParameters();
372 if (typeParams.size() > 0) {
376 for(TypeParameterElement tpe: typeParams) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DComment.java245 * Return param tags in this comment. If typeParams is true
249 private ParamTag[] paramTags(boolean typeParams) { argument
254 if (typeParams == p.isTypeParameter()) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java731 List<Type> typeParams =
733 if (typeParams.length() != typeArgs.length()) {
738 typeParams,

Completed in 634 milliseconds