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 theISVNLogMessageChangePath
interface.
-
-
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 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 itemjava.lang.String
toString()
-
-
-
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:ISVNLogMessageChangePath
Retrieve the path to the commited item- Specified by:
getPath
in interfaceISVNLogMessageChangePath
- Returns:
- the path to the commited item
-
getCopySrcRevision
public SVNRevision.Number getCopySrcRevision()
Description copied from interface:ISVNLogMessageChangePath
Retrieve the copy source revision if any or null otherwise- Specified by:
getCopySrcRevision
in interfaceISVNLogMessageChangePath
- Returns:
- the copy source revision (if any)
-
getCopySrcPath
public java.lang.String getCopySrcPath()
Description copied from interface:ISVNLogMessageChangePath
Retrieve the copy source path (if any) or null otherwise- Specified by:
getCopySrcPath
in interfaceISVNLogMessageChangePath
- Returns:
- the copy source path (if any)
-
getAction
public char getAction()
Description copied from interface:ISVNLogMessageChangePath
Retrieve action performed. I.e. 'A'dd, 'D'elete, 'R'eplace, 'M'odify- Specified by:
getAction
in interfaceISVNLogMessageChangePath
- Returns:
- action performed
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-