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.util.tree;
11:
12: //
13: // TreeNodeRenderer.java
14: // MetaEvolve
15: //
16: // Version 1
17: //
18: // Created by Brian Risk of Geneffects on March 19, 2004.
19: // Last Modified on March 19, 2004.
20: // www.geneffects.com
21: //
22: import java.awt.*;
23:
24: public interface TreeNodeRenderer {
25: /** String containing the CVS revision. Read out via reflection!*/
26: final static String CVS_REVISION = "$Revision: 1.1 $";
27:
28: public Color getNodeColor(Object node, int level);
29: }
|