org.tmatesoft.svn.core.wc
Class SVNCommitPacket
public class SVNCommitPacket
The
SVNCommitPacket is a storage for
SVNCommitItem
objects which represent information on versioned items intended
for being committed to a repository.
Used by
SVNCommitClient in
doCollectCommitItems()
to collect and hold information on paths that have local changes.
dispose
public void dispose()
throws SVNException Disposes the current object.
getCommitItems
public SVNCommitItem[] getCommitItems()
Gets an array of SVNCommitItem objects stored in this
object.
- an array of SVNCommitItem objects containing
info of versioned items to be committed
isCommitItemSkipped
public boolean isCommitItemSkipped(SVNCommitItem item)
Determines if an item intended for a commit is set to
be skipped - that is not to be committed.
- true if the item
is set to be skipped, otherwise false
isDisposed
public boolean isDisposed()
Determines if this object is disposed.
- true if disposed
otherwise false
setCommitItemSkipped
public void setCommitItemSkipped(SVNCommitItem item,
boolean skipped) Sets or unsets a versioned item to be skipped -
whether or not it should be committed.
item - an item that should be marked skippedskipped - if true the item is
set to be skipped (a commit operation should skip
the item), otherwise - unskipped if it was
previously marked skipped
toString
public String toString()
Gives a string representation of this object.
- a string representing this object.
Copyright © 2004-2006 TMate Software Ltd. All Rights Reserved.