Schnittstelle IClasspathAttributeDelta

Alle bekannten Implementierungsklassen:
ClasspathAttributeDelta

public interface IClasspathAttributeDelta
A delta which describes changes in IClasspathAttribute of a classpath between two discrete points in time. Given a delta, clients can access the name of the affected attribute as well as the current value of the attribute.

Deltas have a different status depending on the kind of change they represent. The list below summarizes each status (as returned by getKind()) and its meaning (see individual constants for a more detailed description):

  • ADDED - The attribute has been added.
  • REMOVED - The attribute has been removed.
  • CHANGED - The value of the attribute has been changed.
Seit:
3.33
  • Feldübersicht

    Felder
    Modifizierer und Typ
    Feld
    Beschreibung
    static final int
    Status constant indicating that the attribute has been added.
    static final int
    Status constant indicating that the attribute has been changed.
    static final int
    Status constant indicating that the attribute has been removed.
  • Methodenübersicht

    Modifizierer und Typ
    Methode
    Beschreibung
    Returns the name of the affected attribute.
    Returns the current value of the affected attribute.
    int
    Returns the kind of this delta - one of ADDED, REMOVED, or CHANGED.
  • Felddetails

  • Methodendetails

    • getKind

      int getKind()
      Returns the kind of this delta - one of ADDED, REMOVED, or CHANGED.
      Gibt zurück:
      the kind of this delta
    • getAttributeName

      String getAttributeName()
      Returns the name of the affected attribute.
      Gibt zurück:
      the name of the attribute
    • getAttributeValue

      String getAttributeValue()
      Returns the current value of the affected attribute.
      Gibt zurück:
      the value of the attribute