Uses of Interface
org.eclipse.jdt.core.ITypeParameter

Packages that use ITypeParameter
org.eclipse.jdt.core   
org.eclipse.jdt.internal.codeassist.impl   
org.eclipse.jdt.internal.core   
org.eclipse.jdt.internal.core.search.matching   
 

Uses of ITypeParameter in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return ITypeParameter
 ITypeParameter IType.getTypeParameter(java.lang.String name)
          Returns the type parameter declared in this type with the given name.
 ITypeParameter IMethod.getTypeParameter(java.lang.String name)
          Returns the type parameter declared in this method with the given name.
 ITypeParameter[] IType.getTypeParameters()
          Returns the formal type parameters for this type.
 ITypeParameter[] IMethod.getTypeParameters()
          Returns the formal type parameters for this method.
 

Uses of ITypeParameter in org.eclipse.jdt.internal.codeassist.impl
 

Classes in org.eclipse.jdt.internal.codeassist.impl that implement ITypeParameter
 class AssistTypeParameter
           
 

Methods in org.eclipse.jdt.internal.codeassist.impl that return ITypeParameter
 ITypeParameter AssistSourceType.getTypeParameter(java.lang.String typeParameterName)
           
 ITypeParameter AssistSourceMethod.getTypeParameter(java.lang.String typeParameterName)
           
 

Uses of ITypeParameter in org.eclipse.jdt.internal.core
 

Classes in org.eclipse.jdt.internal.core that implement ITypeParameter
 class TypeParameter
           
 

Fields in org.eclipse.jdt.internal.core declared as ITypeParameter
protected  ITypeParameter[] SourceTypeElementInfo.typeParameters
           
protected  ITypeParameter[] SourceMethodElementInfo.typeParameters
           
 

Methods in org.eclipse.jdt.internal.core that return ITypeParameter
 ITypeParameter SourceType.getTypeParameter(java.lang.String typeParameterName)
           
 ITypeParameter SourceMethod.getTypeParameter(java.lang.String typeParameterName)
           
 ITypeParameter BinaryType.getTypeParameter(java.lang.String typeParameterName)
           
 ITypeParameter[] SourceType.getTypeParameters()
           
 ITypeParameter[] SourceMethod.getTypeParameters()
           
 ITypeParameter[] BinaryType.getTypeParameters()
           
protected  ITypeParameter[] NamedMember.getTypeParameters()
           
 

Uses of ITypeParameter in org.eclipse.jdt.internal.core.search.matching
 

Fields in org.eclipse.jdt.internal.core.search.matching declared as ITypeParameter
protected  ITypeParameter TypeParameterPattern.typeParameter
           
 

Constructors in org.eclipse.jdt.internal.core.search.matching with parameters of type ITypeParameter
TypeParameterPattern(boolean findDeclarations, boolean findReferences, ITypeParameter typeParameter, int matchRule)