Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/display/portrayal/IndividualPortrayal.java @ 6152

Last change on this file since 6152 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 660 bytes
Line 
1/*
2  Copyright 2006 by Sean Luke
3  Licensed under the Academic Free License version 3.0
4  See the file "LICENSE" for more information
5*/
6
7
8/*
9 * Created on Apr 17, 2005 8:30:36 PM
10 *
11 * By: spaus
12 */
13package ec.display.portrayal;
14
15import java.awt.LayoutManager;
16
17import javax.swing.JPanel;
18
19import ec.EvolutionState;
20import ec.Individual;
21import ec.Setup;
22
23/**
24 * @author spaus
25 */
26public abstract class IndividualPortrayal
27    extends JPanel
28    implements Setup
29    {
30    IndividualPortrayal(LayoutManager layout)
31        {
32        super(layout);
33        }
34   
35    public abstract void portrayIndividual(EvolutionState state, Individual individual);
36    }
Note: See TracBrowser for help on using the repository browser.