Uses of Class
org.tmatesoft.svn.core.wc.SVNCommitItem
-
Packages that use SVNCommitItem 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.cli.svn org.tmatesoft.svn.core.internal.wc org.tmatesoft.svn.core.internal.wc16 org.tmatesoft.svn.core.internal.wc2.compat 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 SVNCommitItem in org.tigris.subversion.javahl
Methods in org.tigris.subversion.javahl with parameters of type SVNCommitItem Modifier and Type Method Description static CommitItem[]
JavaHLObjectFactory. getCommitItems(SVNCommitItem[] commitables, boolean isImport, boolean isURLsOnly)
-
Uses of SVNCommitItem in org.tmatesoft.svn.cli.svn
Methods in org.tmatesoft.svn.cli.svn with parameters of type SVNCommitItem Modifier and Type Method Description private java.lang.String
SVNCommandEnvironment. createCommitMessageTemplate(SVNCommitItem[] items)
java.lang.String
SVNCommandEnvironment. getCommitMessage(java.lang.String message, SVNCommitItem[] commitables)
SVNProperties
SVNCommandEnvironment. getRevisionProperties(java.lang.String message, SVNCommitItem[] commitables, SVNProperties revisionProperties)
-
Uses of SVNCommitItem in org.tmatesoft.svn.core.internal.wc
Methods in org.tmatesoft.svn.core.internal.wc that return SVNCommitItem Modifier and Type Method Description static SVNCommitItem[]
SVNCommitUtil. harvestCommitables(SVNWCAccess baseAccess, java.util.Collection paths, java.util.Map lockTokens, boolean justLocked, SVNDepth depth, boolean force, java.util.Collection changelists, ISVNCommitParameters params)
Methods in org.tmatesoft.svn.core.internal.wc with parameters of type SVNCommitItem Modifier and Type Method Description SVNProperties
SVNCommitMediator. getWCProperties(SVNCommitItem item)
private void
SVNCommitter. sendPropertiesDelta(java.lang.String commitPath, SVNCommitItem item, ISVNEditor editor)
static SVNURL
SVNCommitUtil. translateCommitables(SVNCommitItem[] items, java.util.Map decodedPaths)
-
Uses of SVNCommitItem in org.tmatesoft.svn.core.internal.wc16
Methods in org.tmatesoft.svn.core.internal.wc16 with parameters of type SVNCommitItem Modifier and Type Method Description protected void
SVNBasicDelegate. setCommitItemAccess(SVNCommitItem item, SVNWCAccess access)
protected void
SVNBasicDelegate. setCommitItemFlags(SVNCommitItem item, boolean contentModified, boolean propertiesModified)
protected void
SVNBasicDelegate. setCommitItemProperty(SVNCommitItem item, java.lang.String name, SVNPropertyValue value)
-
Uses of SVNCommitItem in org.tmatesoft.svn.core.internal.wc2.compat
Methods in org.tmatesoft.svn.core.internal.wc2.compat that return SVNCommitItem Modifier and Type Method Description static SVNCommitItem
SvnCodec. commitItem(SvnCommitItem item)
Methods in org.tmatesoft.svn.core.internal.wc2.compat with parameters of type SVNCommitItem Modifier and Type Method Description static SvnCommitItem
SvnCodec. commitItem(SVNCommitItem item)
java.lang.String
SvnCodec.SVNCommitHandler. getCommitMessage(java.lang.String message, SVNCommitItem[] commitables)
SVNProperties
SvnCodec.SVNCommitHandler. getRevisionProperties(java.lang.String message, SVNCommitItem[] commitables, SVNProperties revisionProperties)
void
SvnCodec.SVNCommitPacketWrapper. setCommitItemSkipped(SVNCommitItem item, boolean skipped)
Constructors in org.tmatesoft.svn.core.internal.wc2.compat with parameters of type SVNCommitItem Constructor Description SVNCommitPacketWrapper(SvnCommit operation, SvnCommitPacket packet, SVNCommitItem[] items, java.util.Map<java.lang.String,java.lang.String> lockTokens)
-
Uses of SVNCommitItem in org.tmatesoft.svn.core.wc
Fields in org.tmatesoft.svn.core.wc declared as SVNCommitItem Modifier and Type Field Description private SVNCommitItem[]
SVNCommitPacket. myCommitItems
Methods in org.tmatesoft.svn.core.wc that return SVNCommitItem Modifier and Type Method Description protected SVNCommitItem[]
SVNCommitPacket. filterSkippedItemsAndLockTokens(java.util.Collection<SVNCommitItem> items, java.util.Map<java.lang.String,?> lockTokens)
SVNCommitItem[]
SVNCommitPacket. getCommitItems()
Gets an array of SVNCommitItem objects stored in this object.Methods in org.tmatesoft.svn.core.wc with parameters of type SVNCommitItem Modifier and Type Method Description java.lang.String
DefaultSVNCommitHandler. getCommitMessage(java.lang.String message, SVNCommitItem[] commitables)
Returns themessage
itself without any modifications to it or""
if themessage
is null.java.lang.String
ISVNCommitHandler. getCommitMessage(java.lang.String message, SVNCommitItem[] commitables)
Handles the incoming initial log message and items intended for a commit and returns a new commit log message.private int
SVNCommitPacket. getItemIndex(SVNCommitItem item)
SVNProperties
DefaultSVNCommitHandler. getRevisionProperties(java.lang.String message, SVNCommitItem[] commitables, SVNProperties revisionProperties)
ReturnsrevisionProperties
as is if it's not null, or an emptySVNProperties
object ifrevisionProperties
is null.SVNProperties
ISVNCommitHandler. getRevisionProperties(java.lang.String message, SVNCommitItem[] commitables, SVNProperties revisionProperties)
Handles the incoming revision properties and returns filtered revision properties given the paths (represented bycommitables
) collected for committing and the commit log message.boolean
SVNCommitPacket. isCommitItemSkipped(SVNCommitItem item)
Determines if an item intended for a commit is set to be skipped - that is not to be committed.void
SVNCommitPacket. setCommitItemSkipped(SVNCommitItem item, boolean skipped)
Sets or unsets a versioned item to be skipped - whether or not it should be committed.Method parameters in org.tmatesoft.svn.core.wc with type arguments of type SVNCommitItem Modifier and Type Method Description protected SVNCommitItem[]
SVNCommitPacket. filterSkippedItemsAndLockTokens(java.util.Collection<SVNCommitItem> items, java.util.Map<java.lang.String,?> lockTokens)
Constructors in org.tmatesoft.svn.core.wc with parameters of type SVNCommitItem Constructor Description SVNCommitPacket(SVNWCAccess wcAccess, SVNCommitItem[] items, java.util.Map lockTokens)
-