Source code: Freenet/support/Callback.java
1 package Freenet.support;
2 /*
3 This code is part of the Java Adaptive Network Client by Ian Clarke.
4 It is distributed under the GNU Public Licence (GPL) version 2. See
5 http://www.gnu.org/ for further details of the GPL.
6
7 Explanation of Code Versions:
8 0.0.0 = Initial Description
9 0.0.1 = API Specified
10 0.x (x>0) = Partial Implementation
11 x.0 (x>0) = Operational
12
13 Requires Classes:
14
15 */
16
17 /**
18 * Interface to simple callback classes
19 *
20 * @version 1.0
21 * @author <A HREF="I.Clarke@strs.co.uk">Ian Clarke</A>
22 **/
23
24 public interface Callback
25 {
26 public void callback();
27 }