Interface VcsLog
-
- All Superinterfaces:
FileOperation
public interface VcsLog extends FileOperation
The VCS log file operation.- Since:
- 0.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setEndRevision(long endRev)
Sets the end revision.void
setLogEntryHandler(VcsLogEntryHandler handler)
Sets the LogEntry handler.void
setStartRevision(long startRev)
Sets the start revision.-
Methods inherited from interface org.apache.commons.vfs2.operations.FileOperation
process
-
-
-
-
Method Detail
-
setEndRevision
void setEndRevision(long endRev)
Sets the end revision.- Parameters:
endRev
- The end revision.
-
setLogEntryHandler
void setLogEntryHandler(VcsLogEntryHandler handler)
Sets the LogEntry handler.- Parameters:
handler
- The LogEntry handler.
-
setStartRevision
void setStartRevision(long startRev)
Sets the start revision.- Parameters:
startRev
- The start revision.
-
-