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:
13: package org.tmatesoft.svn.core;
14:
15: /**
16: * The <b>ISVNDirEntryHandler</b> interface is used to handle information
17: * about directory entries while retrieving dir contents.
18: *
19: * @version 1.1.1
20: * @author TMate Software Ltd.
21: */
22: public interface ISVNDirEntryHandler {
23: /**
24: * Handles a directory entry passed.
25: *
26: * @param dirEntry a directory entry
27: * @see SVNDirEntry
28: * @throws SVNException
29: */
30: public void handleDirEntry(SVNDirEntry dirEntry)
31: throws SVNException;
32:
33: }
|