Interface VcsUpdate
-
- All Superinterfaces:
FileOperation
public interface VcsUpdate extends FileOperation
The VCS update file operation.- Since:
- 0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addUpdateListener(VcsUpdateListener listener)
Adds an update listener.void
removeUpdateListener(VcsUpdateListener listener)
Removes an update listener.void
setRecursive(boolean isRecursive)
Sets whether to recurse.void
setRevision(long revision)
Sets revision number.-
Methods inherited from interface org.apache.commons.vfs2.operations.FileOperation
process
-
-
-
-
Method Detail
-
addUpdateListener
void addUpdateListener(VcsUpdateListener listener)
Adds an update listener.- Parameters:
listener
- The UpdateListener.
-
removeUpdateListener
void removeUpdateListener(VcsUpdateListener listener)
Removes an update listener.- Parameters:
listener
- The UpdateListener.
-
setRecursive
void setRecursive(boolean isRecursive)
Sets whether to recurse.- Parameters:
isRecursive
- true if recursive.
-
setRevision
void setRevision(long revision)
Sets revision number.- Parameters:
revision
- The revision number.
-
-