Class SvnCodec.SVNCommitPacketWrapper
- java.lang.Object
-
- org.tmatesoft.svn.core.wc.SVNCommitPacket
-
- org.tmatesoft.svn.core.internal.wc2.compat.SvnCodec.SVNCommitPacketWrapper
-
- Enclosing class:
- SvnCodec
public static class SvnCodec.SVNCommitPacketWrapper extends SVNCommitPacket
-
-
Field Summary
Fields Modifier and Type Field Description private SvnCommit
operation
private SvnCommitPacket
packet
-
Fields inherited from class org.tmatesoft.svn.core.wc.SVNCommitPacket
EMPTY
-
-
Constructor Summary
Constructors Constructor Description SVNCommitPacketWrapper(SvnCommit operation, SvnCommitPacket packet, SVNCommitItem[] items, java.util.Map<java.lang.String,java.lang.String> lockTokens)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
dispose()
Disposes the current object.SvnCommit
getOperation()
SvnCommitPacket
getPacket()
SVNCommitPacket
removeSkippedItems()
void
setCommitItemSkipped(SVNCommitItem item, boolean skipped)
Sets or unsets a versioned item to be skipped - whether or not it should be committed.-
Methods inherited from class org.tmatesoft.svn.core.wc.SVNCommitPacket
filterSkippedItemsAndLockTokens, getCommitItems, getLockTokens, isCommitItemSkipped, isDisposed, toString
-
-
-
-
Field Detail
-
packet
private SvnCommitPacket packet
-
operation
private SvnCommit operation
-
-
Constructor Detail
-
SVNCommitPacketWrapper
public SVNCommitPacketWrapper(SvnCommit operation, SvnCommitPacket packet, SVNCommitItem[] items, java.util.Map<java.lang.String,java.lang.String> lockTokens)
-
-
Method Detail
-
dispose
public void dispose() throws SVNException
Description copied from class:SVNCommitPacket
Disposes the current object.- Overrides:
dispose
in classSVNCommitPacket
- Throws:
SVNException
-
getPacket
public SvnCommitPacket getPacket()
-
getOperation
public SvnCommit getOperation()
-
setCommitItemSkipped
public void setCommitItemSkipped(SVNCommitItem item, boolean skipped)
Description copied from class:SVNCommitPacket
Sets or unsets a versioned item to be skipped - whether or not it should be committed.- Overrides:
setCommitItemSkipped
in classSVNCommitPacket
- Parameters:
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- See Also:
SVNCommitPacket.isCommitItemSkipped(SVNCommitItem)
-
removeSkippedItems
public SVNCommitPacket removeSkippedItems()
- Overrides:
removeSkippedItems
in classSVNCommitPacket
-
-