Interface ISVNLogMessageChangePath
-
- All Known Implementing Classes:
SVNLogMessageChangePath
public interface ISVNLogMessageChangePathAn interface defining a change path for a log message
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description chargetAction()Retrieve action performed.java.lang.StringgetCopySrcPath()Retrieve the copy source path (if any) or null otherwiseSVNRevision.NumbergetCopySrcRevision()Retrieve the copy source revision if any or null otherwisejava.lang.StringgetPath()Retrieve the path to the commited item
-
-
-
Method Detail
-
getPath
java.lang.String getPath()
Retrieve the path to the commited item- Returns:
- the path to the commited item
-
getCopySrcRevision
SVNRevision.Number getCopySrcRevision()
Retrieve the copy source revision if any or null otherwise- Returns:
- the copy source revision (if any)
-
getCopySrcPath
java.lang.String getCopySrcPath()
Retrieve the copy source path (if any) or null otherwise- Returns:
- the copy source path (if any)
-
getAction
char getAction()
Retrieve action performed. I.e. 'A'dd, 'D'elete, 'R'eplace, 'M'odify- Returns:
- action performed
-
-