Schnittstelle ISourceField

Alle Superschnittstellen:
IGenericField
Alle bekannten Implementierungsklassen:
SourceFieldElementInfo, SourceFieldWithChildrenInfo

public interface ISourceField extends IGenericField
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    int
    Answer the source end position of the field's declaration.
    int
    Answer the source start position of the field's declaration.
    char[]
    Answer the initialization source for this constant field.
    int
    Answer the source end position of the field's name.
    int
    Answer the source start position of the field's name.
    char[]
    Answer the type name of the field.

    Von Schnittstelle geerbte Methoden org.aspectj.org.eclipse.jdt.internal.compiler.env.IGenericField

    getModifiers
  • Methodendetails

    • getDeclarationSourceEnd

      int getDeclarationSourceEnd()
      Answer the source end position of the field's declaration.
    • getDeclarationSourceStart

      int getDeclarationSourceStart()
      Answer the source start position of the field's declaration.
    • getInitializationSource

      char[] getInitializationSource()
      Answer the initialization source for this constant field. Answer null if the field is not a constant or if it has no initialization.
    • getNameSourceEnd

      int getNameSourceEnd()
      Answer the source end position of the field's name.
    • getNameSourceStart

      int getNameSourceStart()
      Answer the source start position of the field's name.
    • getTypeName

      char[] getTypeName()
      Answer the type name of the field. The name is a simple name or a qualified, dot separated name. For example, Hashtable or java.util.Hashtable.