View Javadoc
1   package org.woehlke.simulation.evolution.gui;
2   
3   import org.woehlke.simulation.evolution.beans.SimGenPoint;
4   
5   import javax.accessibility.Accessible;
6   import java.awt.image.ImageObserver;
7   import java.awt.*;
8   import java.io.Serializable;
9   
10  /**
11   * (C) 2006 - 2008 Thomas Woehlke
12   * http://www.thomas-woehlke.de
13   * @author Thomas Woehlke
14   * Date: 05.02.2006
15   * Time: 01:09:44
16   */
17  public interface ISimGenApplet extends ImageObserver, MenuContainer, Serializable, Accessible {
18      void init();
19  
20      void destroy();
21  
22      void stop();
23  
24      SimGenPoint getCanvasDimenensions();
25  
26      ISimGenWorldCanvas getCanvas();
27  }