01: /*
02: * ====================================================================
03: * Copyright (c) 2004-2008 TMate Software Ltd. All rights reserved.
04: *
05: * This software is licensed as described in the file COPYING, which
06: * you should have received as part of this distribution. The terms
07: * are also available at http://svnkit.com/license.html.
08: * If newer versions of this license are posted there, you may use a
09: * newer version instead, at your option.
10: * ====================================================================
11: */
12: package org.tmatesoft.svn.core.wc;
13:
14: import org.tmatesoft.svn.core.SVNCancelException;
15: import org.tmatesoft.svn.core.SVNException;
16:
17: /**
18: * @version 1.1.1
19: * @author TMate Software Ltd.
20: */
21: public class SVNEventAdapter implements ISVNEventHandler {
22:
23: public void checkCancelled() throws SVNCancelException {
24: }
25:
26: public void handleEvent(SVNEvent event, double progress)
27: throws SVNException {
28: }
29:
30: }
|