Klasse TypeParameter

java.lang.Object
org.eclipse.core.runtime.PlatformObject
Alle implementierten Schnittstellen:
IJavaElement, ISourceReference, ITypeParameter, org.eclipse.core.runtime.IAdaptable
Bekannte direkte Unterklassen:
AssistTypeParameter

public class TypeParameter extends SourceRefElement implements ITypeParameter
  • Felddetails

    • name

      protected String name
  • Konstruktordetails

  • Methodendetails

    • equals

      public boolean equals(Object o)
      Beschreibung aus Klasse kopiert: JavaElement
      Returns true if this handle represents the same Java element as the given handle. By default, two handles represent the same element if they are identical or if they represent the same type of element, have equal names, parents, and occurrence counts.

      If a subclass has other requirements for equality, this method must be overridden.

      Setzt außer Kraft:
      equals in Klasse SourceRefElement
      Siehe auch:
    • getBounds

      public String[] getBounds() throws JavaModelException
      Beschreibung aus Schnittstelle kopiert: ITypeParameter
      Returns the names of the class and interface bounds of this type parameter. Returns an empty array if this type parameter has no bounds. A bound name is the name as it appears in the source (without the extends keyword) if the type parameter comes from a compilation unit. It is the dot-separated fully qualified name of the bound if the type parameter comes from a class file.
      Angegeben von:
      getBounds in Schnittstelle ITypeParameter
      Gibt zurück:
      the names of the bounds
      Löst aus:
      JavaModelException - if this element does not exist or if an exception occurs while accessing its corresponding resource
    • getBoundsSignatures

      public String[] getBoundsSignatures() throws JavaModelException
      Beschreibung aus Schnittstelle kopiert: ITypeParameter
      Returns the signatures for this type parameter's bounds. The type parameter may have been declared as part of a type or a method. The signatures represent only the individual bounds and do not include the type variable name or the extends keyword. The signatures may be either unresolved (for source types) or resolved (for binary types). See Signature for details.
      Angegeben von:
      getBoundsSignatures in Schnittstelle ITypeParameter
      Gibt zurück:
      the signatures for the bounds of this formal type parameter
      Löst aus:
      JavaModelException - if this element does not exist or if an exception occurs while accessing its corresponding resource.
      Siehe auch:
    • getDeclaringMember

      public IMember getDeclaringMember()
      Beschreibung aus Schnittstelle kopiert: ITypeParameter
      Returns the declaring member of this type parameter. This can be either an IType or an IMethod.

      This is a handle-only method.

      Angegeben von:
      getDeclaringMember in Schnittstelle ITypeParameter
      Gibt zurück:
      the declaring member of this type parameter.
    • getElementName

      public String getElementName()
      Beschreibung aus Schnittstelle kopiert: IJavaElement
      Returns the name of this element. This is a handle-only method.
      Angegeben von:
      getElementName in Schnittstelle IJavaElement
      Setzt außer Kraft:
      getElementName in Klasse JavaElement
      Gibt zurück:
      the element name
      Siehe auch:
      • IAdaptable
    • getElementType

      public int getElementType()
      Beschreibung aus Schnittstelle kopiert: IJavaElement
      Returns this element's kind encoded as an integer. This is a handle-only method.
      Angegeben von:
      getElementType in Schnittstelle IJavaElement
      Gibt zurück:
      the kind of element; one of the constants declared in IJavaElement
      Siehe auch:
    • getHandleMementoDelimiter

      protected char getHandleMementoDelimiter()
      Beschreibung aus Klasse kopiert: JavaElement
      Returns the char that marks the start of this handles contribution to a memento.
      Angegeben von:
      getHandleMementoDelimiter in Klasse JavaElement
    • getKey

      public String getKey(boolean forceOpen) throws JavaModelException
      Löst aus:
      JavaModelException
    • getNameRange

      public ISourceRange getNameRange() throws JavaModelException
      Beschreibung aus Schnittstelle kopiert: ISourceReference
      Returns the name range associated with this element.

      If the element is an IMember, it returns the source range of this member's simple name, or null if this member does not have a name (for example, an initializer), or if this member does not have associated source code (for example, a binary type).

      If this element is an IImportDeclaration, the source range of this import declaration's name, or null if this import declaration does not have associated source code (for example, a binary type).
      The source range for the name includes the trailing '*' if the call to IImportDeclaration.isOnDemand() returns true.

      If this element is an IPackageDeclaration, the source range of this package declaration's name, or null if this package declaration does not have associated source code (for example, a binary type).

      If this element is an IAnnotation, the source range of this annotation's name, or null if this annotation does not have associated source code (for example, in a binary type).

      If this element is an ITypeParameter, the source range of this type parameter's name, or null if this type parameter does not have associated source code (for example, in a binary type).

      If this element is an ITypeRoot or IImportContainer, it returns null.

      Angegeben von:
      getNameRange in Schnittstelle ISourceReference
      Gibt zurück:
      the name range associated with this element, or null if not available
      Löst aus:
      JavaModelException
    • getSourceRange

      public ISourceRange getSourceRange() throws JavaModelException
      Beschreibung aus Schnittstelle kopiert: ISourceReference
      Returns the source range associated with this element.

      For class files, this returns the range of the entire compilation unit associated with the class file (if there is one).

      If this element has no associated source code, either null is returned, or a source range with a -1 offset and a 0 length. SourceRange.isAvailable(ISourceRange) can be used to detect that case.

      Angegeben von:
      getSourceRange in Schnittstelle ISourceReference
      Setzt außer Kraft:
      getSourceRange in Klasse SourceRefElement
      Gibt zurück:
      the source range, or either null or [-1, 0] if this element has no associated source code
      Löst aus:
      JavaModelException - if an exception occurs while accessing its corresponding resource
      Siehe auch:
    • getClassFile

      public IClassFile getClassFile()
      Setzt außer Kraft:
      getClassFile in Klasse JavaElement
      Siehe auch:
    • getTypeRoot

      public ITypeRoot getTypeRoot()
      Returns the Java type root in which this type parameter is declared.

      This is a handle-only method.

      Angegeben von:
      getTypeRoot in Schnittstelle ITypeParameter
      Gibt zurück:
      the Java type root in which this type parameter is declared
      Seit:
      3.7
    • toStringName

      protected void toStringName(StringBuffer buffer)
      Beschreibung aus Klasse kopiert: JavaElement
      Debugging purposes
      Setzt außer Kraft:
      toStringName in Klasse SourceRefElement