Class SVNConflictVersion
- java.lang.Object
-
- org.tmatesoft.svn.core.internal.wc.SVNConflictVersion
-
public class SVNConflictVersion extends java.lang.Object
SVNConflictVersion represents Info about one of the conflicting versions of a node.- Since:
- 1.3
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description private SVNNodeKind
myKind
private java.lang.String
myPath
private long
myPegRevision
private SVNURL
myRepositoryRoot
-
Constructor Summary
Constructors Constructor Description SVNConflictVersion(SVNURL repositoryRoot, java.lang.String path, long pegRevision, SVNNodeKind kind)
Creates a newSVNConflictVersion
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SVNNodeKind
getKind()
Returns the node kind.java.lang.String
getPath()
Returns the repository path.long
getPegRevision()
Returns the peg revisionSVNURL
getRepositoryRoot()
Returns the repository root url.java.lang.String
toString()
Returns a string representation of this object.
-
-
-
Field Detail
-
myRepositoryRoot
private final SVNURL myRepositoryRoot
-
myPath
private final java.lang.String myPath
-
myPegRevision
private final long myPegRevision
-
myKind
private final SVNNodeKind myKind
-
-
Constructor Detail
-
SVNConflictVersion
public SVNConflictVersion(SVNURL repositoryRoot, java.lang.String path, long pegRevision, SVNNodeKind kind)
Creates a newSVNConflictVersion
.- Parameters:
repositoryRoot
- repository root urlpath
- absolute repository pathpegRevision
- peg revision at which to look uppath
kind
- node kind of thepath
- Since:
- 1.3
-
-
Method Detail
-
getRepositoryRoot
public SVNURL getRepositoryRoot()
Returns the repository root url.- Returns:
- repository root url
- Since:
- 1.3
-
getPath
public java.lang.String getPath()
Returns the repository path.- Returns:
- absolute repository path
- Since:
- 1.3
-
getPegRevision
public long getPegRevision()
Returns the peg revision- Returns:
- peg revision
- Since:
- 1.3
-
getKind
public SVNNodeKind getKind()
Returns the node kind.- Returns:
- node kind of the path
- Since:
- 1.3
-
toString
public java.lang.String toString()
Returns a string representation of this object.- Overrides:
toString
in classjava.lang.Object
- Returns:
- string representation
-
-