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.SVNException;
15:
16: /**
17: * The <b>ISVNDiffStatusHandler</b> is used to handle diff status operations supported by
18: * the <b>SVNDiffClient</b>.
19: *
20: * @version 1.1.1
21: * @author TMate Software Ltd.
22: * @since 1.1.0
23: */
24: public interface ISVNDiffStatusHandler {
25:
26: /**
27: * Receives a diff status object to handle.
28: *
29: * @param diffStatus a diff status object
30: * @throws SVNException
31: */
32: public void handleDiffStatus(SVNDiffStatus diffStatus)
33: throws SVNException;
34:
35: }
|