View Javadoc
1   package org.woehlke.simulation.evolution.dom;
2   
3   /**
4    * (C) 2006 - 2008 Thomas Woehlke
5    * http://www.thomas-woehlke.de
6    * @author Thomas Woehlke
7    * Date: 04.02.2006
8    * Time: 22:13:47
9    */
10  public interface ISimGenCore {
11      ISimGenCore mitosisFactory();
12  
13      ESimGenDna getRandomOrientation();
14  
15  
16      int getMaxInitialValue();
17  
18      void setMaxInitialValue(int maxInitialValue);
19  
20      int getMaxValue();
21  
22      void setMaxValue(int maxValue);
23  }