Package com.perforce.p4java.core.file
Interface IObliterateResult
-
- All Known Implementing Classes:
ObliterateResult
public interface IObliterateResult
Record stats returned by the obliterateFiles method. Obliterate removes files and their history from the depot. The Perforce server returns information about how many various types of records were deleted (or added).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getClientRecDeleted()
java.util.List<IFileSpec>
getFileSpecs()
int
getIntegrationRecAdded()
int
getIntegrationRecDeleted()
int
getLabelRecDeleted()
int
getRevisionRecDeleted()
int
getWorkingRecDeleted()
boolean
isReportOnly()
-
-
-
Method Detail
-
getFileSpecs
java.util.List<IFileSpec> getFileSpecs()
- Returns:
- the list of filespecs purged
-
getIntegrationRecAdded
int getIntegrationRecAdded()
- Returns:
- the number of integration records added
-
getLabelRecDeleted
int getLabelRecDeleted()
- Returns:
- the number of integration records deleted
-
getClientRecDeleted
int getClientRecDeleted()
- Returns:
- the number of client records deleted
-
getIntegrationRecDeleted
int getIntegrationRecDeleted()
- Returns:
- the number of integration records deleted
-
getWorkingRecDeleted
int getWorkingRecDeleted()
- Returns:
- the number of working records deleted
-
getRevisionRecDeleted
int getRevisionRecDeleted()
- Returns:
- the number of revision records deleted
-
isReportOnly
boolean isReportOnly()
- Returns:
- true, if report only
-
-