Package org.tigris.subversion.javahl
Interface ProgressListener
-
- All Superinterfaces:
java.util.EventListener
public interface ProgressListener extends java.util.EventListener
Subversion progress event interface. Implement this interface to provide a custom progress event handler to the SVNClient class. If you need to pass extra information to the notification handler, add it to your implementing class.- Since:
- 1.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onProgress(ProgressEvent event)
Implement this API to receive progress events for Subversion operations.
-
-
-
Method Detail
-
onProgress
void onProgress(ProgressEvent event)
Implement this API to receive progress events for Subversion operations.- Parameters:
event
- everything to know about this event
-
-