| org.tmatesoft.svn.core.wc.ISVNCommitParameters
All known Subclasses: org.tmatesoft.svn.core.wc.DefaultSVNCommitParameters,
ISVNCommitParameters | public interface ISVNCommitParameters (Code) | | The ISVNCommitParameters is the interface for parameters
which set behaviour for a commit operation that touches
still versioned files or dirs that are somehow missing.
To bring your commit parameters into usage, simply pass them to
a committer object, for example, to
SVNCommitClient.setCommitParameters(ISVNCommitParameters) SVNCommitClient .
version: 1.1.1 author: TMate Software Ltd. See Also: DefaultSVNCommitParameters |
Inner Class :public static class Action | |
Field Summary | |
final public static Action | DELETE A constant that instructs a commit operation to force
a deletion of a missing item. | final public static Action | ERROR A constant that defines a file/dir missing situation as an
error, commit should fail. | final public static Action | SKIP A constant that instructs a commit operation to skip a
missing item. |
Method Summary | |
public boolean | onDirectoryDeletion(File directory) | public boolean | onFileDeletion(File file) | public Action | onMissingDirectory(File file) Returns the action a commit operation should undertake
if there's a missing directory under commit scope that is not
however scheduled for deletion. | public Action | onMissingFile(File file) Returns the action a commit operation should undertake
if there's a missing file under commit scope that is not however
scheduled for deletion. |
DELETE | final public static Action DELETE(Code) | | A constant that instructs a commit operation to force
a deletion of a missing item. Although the item may be not
scheduled for deletion (only missing in filesystem) it will
be deleted from version control.
|
ERROR | final public static Action ERROR(Code) | | A constant that defines a file/dir missing situation as an
error, commit should fail.
|
SKIP | final public static Action SKIP(Code) | | A constant that instructs a commit operation to skip a
missing item. So, the item is not committed.
|
onDirectoryDeletion | public boolean onDirectoryDeletion(File directory)(Code) | | true if directory should be deleted after commit. |
onFileDeletion | public boolean onFileDeletion(File file)(Code) | | true if file should be deleted after commit. |
onMissingDirectory | public Action onMissingDirectory(File file)(Code) | | Returns the action a commit operation should undertake
if there's a missing directory under commit scope that is not
however scheduled for deletion.
Parameters: file - a missing directory an action that must be one of the constants defined in the interface |
onMissingFile | public Action onMissingFile(File file)(Code) | | Returns the action a commit operation should undertake
if there's a missing file under commit scope that is not however
scheduled for deletion.
Parameters: file - a missing file an action that must be one of the constants defined in the interface |
|
|