Package | Description |
---|---|
org.netbeans.lib.cvsclient.command.status | |
org.netbeans.lib.cvsclient.file |
Modifier and Type | Method and Description |
---|---|
FileStatus |
StatusInformation.getStatus()
Getter for property status.
|
Modifier and Type | Method and Description |
---|---|
void |
StatusInformation.setStatus(FileStatus status)
Setter for property status.
|
Modifier and Type | Field and Description |
---|---|
static FileStatus |
FileStatus.ADDED
The Added status, i.e. the file has been added to the repository
but not committed yet.
|
static FileStatus |
FileStatus.HAS_CONFLICTS
The "conflicts" status, i.e. the file has been merged and now
has conflicts that need resolved before it can be checked-in
|
static FileStatus |
FileStatus.INVALID
The entry is invalid, appropriate file in CVS repository can not be found.
|
static FileStatus |
FileStatus.MODIFIED
The locally modified status, i.e. the file has been modified locally
and is out of sync with the repository
|
static FileStatus |
FileStatus.NEEDS_CHECKOUT
The "needs checkout" status, i.e. the file is out of sync with the
repository and needs to be updated
|
static FileStatus |
FileStatus.NEEDS_MERGE
The "needs merge" status, i.e. the file is locally modified and
the file in the repository has been modified too
|
static FileStatus |
FileStatus.NEEDS_PATCH
The "needs patch" status, i.e. the file is out of sync with the
repository and needs to be patched
|
static FileStatus |
FileStatus.REMOVED
The Removed status, i.e. the file has been removed from the repository
but not committed yet
|
static FileStatus |
FileStatus.UNKNOWN
The unknown status, i.e. the file is not known to the CVS repository.
|
static FileStatus |
FileStatus.UNRESOLVED_CONFLICT
A file with the same name as this new file has been added to the
repository from a second workspace.
|
static FileStatus |
FileStatus.UP_TO_DATE
The up-to-date status, i.e. the file is in sync with the repository
|
Modifier and Type | Method and Description |
---|---|
static FileStatus |
FileStatus.getStatusForString(java.lang.String statusString)
Returns the corresponding FileStatus constant for the specified String.
|