Interface ISVNLogMessageChangePath
-
- All Known Implementing Classes:
SVNLogMessageChangePath
public interface ISVNLogMessageChangePath
An interface defining a change path for a log message
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description char
getAction()
Retrieve action performed.java.lang.String
getCopySrcPath()
Retrieve the copy source path (if any) or null otherwiseSVNRevision.Number
getCopySrcRevision()
Retrieve the copy source revision if any or null otherwisejava.lang.String
getPath()
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
-
-