Package org.tmatesoft.svn.core.wc.admin
Class SVNAdminEventAdapter
- java.lang.Object
-
- org.tmatesoft.svn.core.wc.admin.SVNAdminEventAdapter
-
- All Implemented Interfaces:
ISVNCanceller
,ISVNAdminEventHandler
,ISVNEventHandler
public class SVNAdminEventAdapter extends java.lang.Object implements ISVNAdminEventHandler
SVNAdminEventAdapter is an adapter class forISVNAdminEventHandler
. Users's event handler implementations should extend this adapter class rather than implementingISVNAdminEventHandler
directly. This way, if theISVNAdminEventHandler
interface is changed in future, users' event handler implementations won't get broken since the changes will be reflected in this adapter class.- Since:
- 1.2
- Version:
- 1.3
-
-
Field Summary
-
Fields inherited from interface org.tmatesoft.svn.core.ISVNCanceller
NULL
-
Fields inherited from interface org.tmatesoft.svn.core.wc.ISVNEventHandler
UNKNOWN
-
-
Constructor Summary
Constructors Constructor Description SVNAdminEventAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
checkCancelled()
Does nothing.void
handleAdminEvent(SVNAdminEvent event, double progress)
Does nothing.void
handleEvent(SVNEvent event, double progress)
Does nothing.
-
-
-
Method Detail
-
handleAdminEvent
public void handleAdminEvent(SVNAdminEvent event, double progress) throws SVNException
Does nothing. To be overridden by a user's implementation.- Specified by:
handleAdminEvent
in interfaceISVNAdminEventHandler
- Parameters:
event
-progress
-- Throws:
SVNException
-
checkCancelled
public void checkCancelled() throws SVNCancelException
Does nothing. To be overridden by a user's implementation.- Specified by:
checkCancelled
in interfaceISVNCanceller
- Throws:
SVNCancelException
-
handleEvent
public void handleEvent(SVNEvent event, double progress) throws SVNException
Does nothing. To be overridden by a user's implementation.- Specified by:
handleEvent
in interfaceISVNEventHandler
- Parameters:
event
-progress
-- Throws:
SVNException
-
-