01: /*
02: * This file is part of JGAP.
03: *
04: * JGAP offers a dual license model containing the LGPL as well as the MPL.
05: *
06: * For licencing information please see the file license.txt included with JGAP
07: * or have a look at the top of class org.jgap.Chromosome which representatively
08: * includes the JGAP license policy applicable for any file delivered with JGAP.
09: */
10: package org.jgap.distr;
11:
12: /**
13: * Holds information about an IMaster instance and allows to communicate with
14: * it.
15: *
16: * @author Klaus Meffert
17: * @since 2.4
18: */
19: public class MasterInfo {
20: /** String containing the CVS revision. Read out via reflection!*/
21: private final static String CVS_REVISION = "$Revision: 1.2 $";
22:
23: // The computer's address over it is reachable in the network
24: public String m_IPAddress;
25:
26: // Only for display purposes
27: public String m_name;
28: }
|