Source code: Freenet/ProtocolListeningAddress.java
1 package Freenet;
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 * ProtocolListeningAddress.java
19 *
20 * A class representing the address of an Adaptive Network client in the
21 network
22 *
23 * @version 0.1
24 * @author Brandon Wiley (blanu@uts.cc.utexas.edu)
25 * @author Ian Clarke (I.Clarke@strs.co.uk)
26 **/
27
28 public abstract class ProtocolListeningAddress
29 {
30 }