Package org.tmatesoft.svn.core.io
Class SVNLocationSegment
- java.lang.Object
-
- org.tmatesoft.svn.core.io.SVNLocationSegment
-
public class SVNLocationSegment extends java.lang.ObjectThe SVNLocationSegment is a representation of a segment of an object's version history with an emphasis on the object's location in the repository as of various revisions.- Since:
- 1.2
- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Constructor Summary
Constructors Constructor Description SVNLocationSegment(long startRevision, long endRevision, java.lang.String path)Creates a newSVNLocationSegmentobject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetEndRevision()Returns the ending (youngest) revision of this segment.java.lang.StringgetPath()Returns the absolute repository path.longgetStartRevision()Returns the beginning (oldest) revision of this segment.voidsetEndRevision(long endRevision)Sets the end revision of the segment.voidsetStartRevision(long startRevision)Sets the start revision of the segment.
-
-
-
Constructor Detail
-
SVNLocationSegment
public SVNLocationSegment(long startRevision, long endRevision, java.lang.String path)Creates a newSVNLocationSegmentobject.pathmay be null to indicate gaps in an object's history.- Parameters:
startRevision- revision start of the location segmentendRevision- revision end of the location segmentpath- absolute (with leading slash) path for this segment
-
-
Method Detail
-
getPath
public java.lang.String getPath()
Returns the absolute repository path. This may be null to indicate gaps in an object's history.- Returns:
- absolute (with leading slash) path for this segment
-
getStartRevision
public long getStartRevision()
Returns the beginning (oldest) revision of this segment.- Returns:
- beginning revision of the segment
-
getEndRevision
public long getEndRevision()
Returns the ending (youngest) revision of this segment.- Returns:
- ending revision of the segment
-
setStartRevision
public void setStartRevision(long startRevision)
Sets the start revision of the segment. Note: this method is not intended for API users.- Parameters:
startRevision- start segment revision
-
setEndRevision
public void setEndRevision(long endRevision)
Sets the end revision of the segment. Note: this method is not intended for API users.- Parameters:
endRevision- end segment revision
-
-