Package com.perforce.p4java.core.file
Interface IObliterateResult
-
- All Known Implementing Classes:
ObliterateResult
public interface IObliterateResultRecord 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 intgetClientRecDeleted()java.util.List<IFileSpec>getFileSpecs()intgetIntegrationRecAdded()intgetIntegrationRecDeleted()intgetLabelRecDeleted()intgetRevisionRecDeleted()intgetWorkingRecDeleted()booleanisReportOnly()
-
-
-
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
-
-