Package com.perforce.p4java.core
Interface IFileDiff
-
- All Known Implementing Classes:
FileDiff
public interface IFileDiff
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
IFileDiff.Status
Status of diff
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getDepotFile1()
Get depot path of first file in diffjava.lang.String
getDepotFile2()
Get depot path of second file in diffjava.lang.String
getFileType1()
Get file type of first file in diffjava.lang.String
getFileType2()
Get file type of second file in diffint
getRevision1()
Get revision of first file in diffint
getRevision2()
Get revision of second file in diffIFileDiff.Status
getStatus()
Get status of file diff
-
-
-
Method Detail
-
getDepotFile1
java.lang.String getDepotFile1()
Get depot path of first file in diff- Returns:
- depot file path
-
getRevision1
int getRevision1()
Get revision of first file in diff- Returns:
- revision number
-
getDepotFile2
java.lang.String getDepotFile2()
Get depot path of second file in diff- Returns:
- depot file path
-
getRevision2
int getRevision2()
Get revision of second file in diff- Returns:
- revision number
-
getFileType1
java.lang.String getFileType1()
Get file type of first file in diff- Returns:
- file type
-
getFileType2
java.lang.String getFileType2()
Get file type of second file in diff- Returns:
- file type
-
getStatus
IFileDiff.Status getStatus()
Get status of file diff- Returns:
- status
-
-