Interface VcsCheckout

All Superinterfaces:
FileOperation

public interface VcsCheckout extends FileOperation
The VCS checkout file operation.
Since:
0.1
  • Method Summary Link icon

    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
    Sets directory under which retrieved files should be placed.

    Methods inherited from interface org.apache.commons.vfs2.operations.FileOperation Link icon

    process
  • Method Details Link icon

    • setExport Link icon

      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 Link icon

      void setRecursive(boolean recursive)
      Sets whether directories should be traversed.
      Parameters:
      recursive - true if directories should be traversed.
    • setRevision Link icon

      void setRevision(long revision)
      Sets the revision number.
      Parameters:
      revision - The revision number.
    • setTargetDirectory Link icon

      void setTargetDirectory(FileObject targetDir)
      Sets directory under which retrieved files should be placed.
      Parameters:
      targetDir - directory under which retrieved files should be placed.