Package org.eclipse.jdt.core
Interface IClasspathAttributeDelta
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):
- Since:
- 3.33
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the affected attribute.Returns the current value of the affected attribute.int
getKind()
-
Field Details
-
ADDED
static final int ADDEDStatus constant indicating that the attribute has been added.- See Also:
-
REMOVED
static final int REMOVEDStatus constant indicating that the attribute has been removed.- See Also:
-
CHANGED
static final int CHANGEDStatus constant indicating that the attribute has been changed.- See Also:
-
-
Method Details
-
getKind
int getKind()- Returns:
- the kind of this delta
-
getAttributeName
String getAttributeName()Returns the name of the affected attribute.- Returns:
- the name of the attribute
-
getAttributeValue
String getAttributeValue()Returns the current value of the affected attribute.- Returns:
- the value of the attribute
-