Uses of Class
org.tmatesoft.svn.core.SVNMergeRange
-
Packages that use SVNMergeRange Package Description org.tigris.subversion.javahl Provides a (mostly native, using JNI and javah) implementation of a high level Java API for Subversion.org.tmatesoft.svn.core This package mostly contains common classes as well as interfaces used throughout all the library.org.tmatesoft.svn.core.internal.util org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc2.ng org.tmatesoft.svn.core.wc This package provides a high-level API for managing Working Copies in a way compatible with the native SVN command line client. -
-
Uses of SVNMergeRange in org.tigris.subversion.javahl
Methods in org.tigris.subversion.javahl with parameters of type SVNMergeRange Modifier and Type Method Description static RevisionRangeJavaHLObjectFactory. createRevisionRange(SVNMergeRange range) -
Uses of SVNMergeRange in org.tmatesoft.svn.core
Methods in org.tmatesoft.svn.core that return SVNMergeRange Modifier and Type Method Description SVNMergeRangeSVNMergeRange. combine(SVNMergeRange range, boolean considerInheritance)Combines this merge range and the givenrangeinto a single one.SVNMergeRangeSVNMergeRange. dup()Makes an exact copy of this object.SVNMergeRange[]SVNMergeRangeList. getRanges()Returns an array ofSVNMergeRangeranges backed by this merge range list object.SVNMergeRangeSVNMergeRange. swapEndPoints()Swaps the start revision and the end revision of this merge range object.Methods in org.tmatesoft.svn.core that return types with arguments of type SVNMergeRange Modifier and Type Method Description java.util.List<SVNMergeRange>SVNMergeRangeList. getRangesAsList()Returns a list of merge ranges backed by this merge range list.Methods in org.tmatesoft.svn.core with parameters of type SVNMergeRange Modifier and Type Method Description booleanSVNMergeRange. canCombine(SVNMergeRange range, boolean considerInheritance)Tells whether this range can me combined with the givenrangedepending on inheritance or not.SVNMergeRangeSVNMergeRange. combine(SVNMergeRange range, boolean considerInheritance)Combines this merge range and the givenrangeinto a single one.booleanSVNMergeRange. contains(SVNMergeRange range, boolean considerInheritance)Says whether this range contains the specifiedrangedepending on inheritance or not.booleanSVNMergeRange. intersects(SVNMergeRange range, boolean considerInheritance)Says whether this range intersects the specifiedrangedepending on inheritance or not.voidSVNMergeRangeList. setRanges(SVNMergeRange[] ranges)Replaces the array ofSVNMergeRangeobjects backed by this object with a new one.Constructors in org.tmatesoft.svn.core with parameters of type SVNMergeRange Constructor Description SVNMergeRangeList(SVNMergeRange range)Creates a new merge range list initializing it with the specified single merge range.SVNMergeRangeList(SVNMergeRange[] ranges)Creates a new merge range list initializing it with an array of merge ranges. -
Uses of SVNMergeRange in org.tmatesoft.svn.core.internal.util
Methods in org.tmatesoft.svn.core.internal.util that return SVNMergeRange Modifier and Type Method Description static SVNMergeRange[]SVNMergeInfoUtil. parseRevisionList(java.lang.StringBuffer mergeInfo, java.lang.String path) -
Uses of SVNMergeRange in org.tmatesoft.svn.core.internal.wc
Methods in org.tmatesoft.svn.core.internal.wc with parameters of type SVNMergeRange Modifier and Type Method Description java.lang.Object[]ISVNMergeStrategy. calculateRemainingRangeList(java.io.File targetFile, SVNEntry entry, SVNURL sourceRoot, boolean[] indirect, SVNURL url1, long revision1, SVNURL url2, long revision2, SVNMergeRange range)java.lang.Object[]SVNMergeDriver. calculateRemainingRangeList(java.io.File targetFile, SVNEntry entry, SVNURL sourceRoot, boolean[] indirect, SVNURL url1, long revision1, SVNURL url2, long revision2, SVNMergeRange range)static SVNEventSVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range)static SVNEventSVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, long processedItemsCount, long totalItemsCount)static SVNEventSVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, long processedItemsCount, long totalItemsCount, SVNProperties revisionProperties, java.lang.String propertyName)static SVNEventSVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, SVNProperties revisionProperties, java.lang.String propertyName)static SVNEventSVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range)static SVNEventSVNEventFactory. createSVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, java.lang.String changelistName)protected voidSVNMergeDriver. recordMergeInfoForAddedSubtrees(SVNMergeRange range, java.lang.String mergeInfoPath, SVNDepth depth)protected voidSVNMergeDriver. recordMergeInfoForDirectoryMerge(java.util.Map resultCatalog, SVNEntry targetEntry, SVNMergeRange range, java.lang.String mergeInfoPath, SVNDepth depth)Constructors in org.tmatesoft.svn.core.internal.wc with parameters of type SVNMergeRange Constructor Description SVNEventExt(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNLock lock, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, java.lang.String changelistName, long processedItemsCount, long totalItemsCount, SVNProperties revisionProperties, java.lang.String propertyName) -
Uses of SVNMergeRange in org.tmatesoft.svn.core.internal.wc2.ng
Methods in org.tmatesoft.svn.core.internal.wc2.ng with parameters of type SVNMergeRange Modifier and Type Method Description protected voidSvnNgMergeDriver. recordMergeInfoForDirectoryMerge(java.util.Map<java.io.File,java.util.Map<java.lang.String,SVNMergeRangeList>> resultCatalog, SVNMergeRange mergeRange, java.lang.String mergeInfoPath, SVNDepth depth, boolean squelchMergeinfoNotifications, java.util.Map<java.io.File,SvnNgMergeDriver.MergePath> childrenWithMergeInfo) -
Uses of SVNMergeRange in org.tmatesoft.svn.core.wc
Methods in org.tmatesoft.svn.core.wc that return SVNMergeRange Modifier and Type Method Description SVNMergeRangeSVNEvent. getMergeRange()Returns the merge range.Constructors in org.tmatesoft.svn.core.wc with parameters of type SVNMergeRange Constructor Description SVNEvent(java.io.File file, SVNNodeKind kind, java.lang.String mimetype, long revision, SVNStatusType cstatus, SVNStatusType pstatus, SVNStatusType lstatus, SVNLock lock, SVNEventAction action, SVNEventAction expected, SVNErrorMessage error, SVNMergeRange range, java.lang.String changelistName, SVNProperties revisionProperties, java.lang.String propertyName)Constructs an SVNEvent object.
-