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