View Javadoc
1   package org.woehlke.computer.kurzweil.cyclic.cellular.automaton;
2   
3   import org.woehlke.computer.kurzweil.cyclic.cellular.automaton.config.ObjectRegistry;
4   import org.woehlke.computer.kurzweil.cyclic.cellular.automaton.view.CyclicCellularAutomatonFrame;
5   
6   /**
7    * Cyclic Cellular Automaton.
8    *
9    * (C) 2006 - 2013 Thomas Woehlke.
10   * http://thomas-woehlke.de/p/cyclic-cellular-automaton/
11   * @author Thomas Woehlke
12   */
13  public class CyclicCellularAutomatonApplication {
14  
15      private CyclicCellularAutomatonApplication() { }
16  
17      /**
18       * Starting the App.
19       * @param args CLI Parameter
20       */
21      public static void main(String[] args) {
22          ObjectRegistryzweil/cyclic/cellular/automaton/config/ObjectRegistry.html#ObjectRegistry">ObjectRegistry ctx = new ObjectRegistry();
23          CyclicCellularAutomatonFramelular/automaton/view/CyclicCellularAutomatonFrame.html#CyclicCellularAutomatonFrame">CyclicCellularAutomatonFrame frame = new CyclicCellularAutomatonFrame(ctx);
24      }
25  }