Package org.tmatesoft.svn.core.wc2
Interface ISvnCommitParameters
public interface ISvnCommitParameters
Interface describes the parameters defining behavior for the commit operation
that touches still versioned files or directories that are somehow missing.
To bring your commit parameters into usage, simply pass them to
a committer object, for example, to
SvnCommit.
- Version:
- 1.7
- Author:
- TMate Software Ltd.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumDescribes an instruction that operation should take if it meets unversioned or missing item. -
Method Summary
Modifier and TypeMethodDescriptionbooleanonDirectoryDeletion(File directory) Instructs whether to remove the localdirectoryafter commit or not.booleanonFileDeletion(File file) Instructs whether to remove the localfileafter commit or not.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.onMissingFile(File file)
-
Method Details
-
onMissingFile
-
onMissingDirectory
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- Returns:
- an action that must be one of the constants defined in the interface
-
onDirectoryDeletion
Instructs whether to remove the localdirectoryafter commit or not.- Parameters:
directory- working copy directory- Returns:
trueif directory should be deleted after commit
-
onFileDeletion
Instructs whether to remove the localfileafter commit or not.- Parameters:
file- working copy file- Returns:
trueif file should be deleted after commit
-