Schnittstelle IAnnotation

Alle bekannten Unterschnittstellen:
IExtendedAnnotation
Alle bekannten Implementierungsklassen:
Annotation, ExtendedAnnotation

public interface IAnnotation
Description of a annotation structure as described in the JVM specifications (added in J2SE 1.5). This interface may be implemented by clients.
Seit:
3.0
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    Answer back the components as described in the JVM specifications.
    int
    Answer back the number of components as described in the JVM specifications.
    int
    Answer back the type index as described in the JVM specifications.
    char[]
    Answer back the type name as described in the JVM specifications.
  • Methodendetails

    • getTypeIndex

      int getTypeIndex()
      Answer back the type index as described in the JVM specifications.
      Gibt zurück:
      the type index
    • getTypeName

      char[] getTypeName()
      Answer back the type name as described in the JVM specifications.
      Gibt zurück:
      the type name
      Seit:
      3.1
    • getComponentsNumber

      int getComponentsNumber()
      Answer back the number of components as described in the JVM specifications.
      Gibt zurück:
      the type index
    • getComponents

      IAnnotationComponent[] getComponents()
      Answer back the components as described in the JVM specifications. Answer an empty collection if none.
      Gibt zurück:
      the components