Package org.eclipse.team.core
Interface ITeamStatus
- All Superinterfaces:
IStatus
- All Known Implementing Classes:
TeamStatus
Defines the status codes used in the status of exceptions and errors relating to Team.
- Since:
- 3.0
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Status code constant (value 279) indicating that the file in the file system is marked as read-only and could not be made writable.static final int
An error occurred trying to obtain theSyncInfo
for a single resource.static final int
The collection of sync info for a sync info set has been canceled so the contents do not reflect the state of the system.static final int
An error occurred that may affect several resources in aSyncInfoSet
. -
Method Summary
Modifier and TypeMethodDescriptionReturn the resource associated with this status.Methods inherited from interface org.eclipse.core.runtime.IStatus
getChildren, getCode, getException, getMessage, getPlugin, getSeverity, isMultiStatus, isOK, matches
-
Field Details
-
RESOURCE_SYNC_INFO_ERROR
static final int RESOURCE_SYNC_INFO_ERRORAn error occurred trying to obtain theSyncInfo
for a single resource. The error will be cleared when the set is reset or possibly when a sync info is added to the set for the resource for which the error occurred.- See Also:
-
SYNC_INFO_SET_ERROR
static final int SYNC_INFO_SET_ERRORAn error occurred that may affect several resources in aSyncInfoSet
. The error will be cleared when the set is reset.- See Also:
-
SYNC_INFO_SET_CANCELLATION
static final int SYNC_INFO_SET_CANCELLATIONThe collection of sync info for a sync info set has been canceled so the contents do not reflect the state of the system. The error will be cleared when the set is reset.- See Also:
-
READ_ONLY_LOCAL
static final int READ_ONLY_LOCALStatus code constant (value 279) indicating that the file in the file system is marked as read-only and could not be made writable.- Since:
- 3.3
- See Also:
-
-
Method Details
-
getResource
IResource getResource()Return the resource associated with this status.- Returns:
- Returns the resource.
-