Class SVNLogMessageChangePath
- java.lang.Object
-
- org.tigris.subversion.svnclientadapter.SVNLogMessageChangePath
-
- All Implemented Interfaces:
ISVNLogMessageChangePath
public class SVNLogMessageChangePath extends java.lang.Object implements ISVNLogMessageChangePath
A generic implementation of theISVNLogMessageChangePathinterface.
-
-
Constructor Summary
Constructors Constructor Description SVNLogMessageChangePath(java.lang.String path, SVNRevision.Number copySrcRevision, java.lang.String copySrcPath, char action)Constructor
-
Method Summary
All Methods Instance Methods Concrete 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 itemjava.lang.StringtoString()
-
-
-
Constructor Detail
-
SVNLogMessageChangePath
public SVNLogMessageChangePath(java.lang.String path, SVNRevision.Number copySrcRevision, java.lang.String copySrcPath, char action)Constructor- Parameters:
path-copySrcRevision-copySrcPath-action-
-
-
Method Detail
-
getPath
public java.lang.String getPath()
Description copied from interface:ISVNLogMessageChangePathRetrieve the path to the commited item- Specified by:
getPathin interfaceISVNLogMessageChangePath- Returns:
- the path to the commited item
-
getCopySrcRevision
public SVNRevision.Number getCopySrcRevision()
Description copied from interface:ISVNLogMessageChangePathRetrieve the copy source revision if any or null otherwise- Specified by:
getCopySrcRevisionin interfaceISVNLogMessageChangePath- Returns:
- the copy source revision (if any)
-
getCopySrcPath
public java.lang.String getCopySrcPath()
Description copied from interface:ISVNLogMessageChangePathRetrieve the copy source path (if any) or null otherwise- Specified by:
getCopySrcPathin interfaceISVNLogMessageChangePath- Returns:
- the copy source path (if any)
-
getAction
public char getAction()
Description copied from interface:ISVNLogMessageChangePathRetrieve action performed. I.e. 'A'dd, 'D'elete, 'R'eplace, 'M'odify- Specified by:
getActionin interfaceISVNLogMessageChangePath- Returns:
- action performed
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-