KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > util > tree > TreeBranchRenderer


1 /*
2  * This file is part of JGAP.
3  *
4  * JGAP offers a dual license model containing the LGPL as well as the MPL.
5  *
6  * For licencing information please see the file license.txt included with JGAP
7  * or have a look at the top of class org.jgap.Chromosome which representatively
8  * includes the JGAP license policy applicable for any file delivered with JGAP.
9  */

10 package org.jgap.util.tree;
11
12 //
13
// TreeRenderer.java
14
// MetaEvolve
15
//
16
// Version 1
17
//
18
// Created by Brian Risk of Geneffects on March 18, 2004.
19
// Last Modified on March 19, 2004.
20
// www.geneffects.com
21
//
22

23 import java.awt.*;
24
25 public interface TreeBranchRenderer {
26   /** String containing the CVS revision. Read out via reflection!*/
27   final static String JavaDoc CVS_REVISION = "$Revision: 1.1 $";
28
29   public Color getBranchColor(Object JavaDoc node, int level);
30 }
31
Popular Tags