Package org.tmatesoft.svn.core.io
Class SVNLocationSegment
java.lang.Object
org.tmatesoft.svn.core.io.SVNLocationSegment
The 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
ConstructorsConstructorDescriptionSVNLocationSegment(long startRevision, long endRevision, String path) Creates a newSVNLocationSegmentobject. -
Method Summary
Modifier and TypeMethodDescriptionlongReturns the ending (youngest) revision of this segment.getPath()Returns the absolute repository path.longReturns 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 Details
-
SVNLocationSegment
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 Details
-
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
-