Interface VcsCheckout
-
- All Superinterfaces:
FileOperation
public interface VcsCheckout extends FileOperation
The VCS checkout file operation.- Since:
- 0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setExport(boolean export)
Sets whether administrative .svn directories will not be created on the retrieved tree.void
setRecursive(boolean recursive)
Sets whether directories should be traversed.void
setRevision(long revision)
Sets the revision number.void
setTargetDirectory(FileObject targetDir)
Sets directory under which retrieved files should be placed.-
Methods inherited from interface org.apache.commons.vfs2.operations.FileOperation
process
-
-
-
-
Method Detail
-
setExport
void setExport(boolean export)
Sets whether administrative .svn directories will not be created on the retrieved tree. The checkout operation in this case is equivalent to export function.- Parameters:
export
- if true, administrative .svn directories will not be created on the retrieved tree.
-
setRecursive
void setRecursive(boolean recursive)
Sets whether directories should be traversed.- Parameters:
recursive
- true if directories should be traversed.
-
setRevision
void setRevision(long revision)
Sets the revision number.- Parameters:
revision
- The revision number.
-
setTargetDirectory
void setTargetDirectory(FileObject targetDir)
Sets directory under which retrieved files should be placed.- Parameters:
targetDir
- directory under which retrieved files should be placed.
-
-