1 package org.woehlke.computer.kurzweil.tabs.cca;
2
3 import org.woehlke.computer.kurzweil.tabs.cca.config.ObjectRegistry;
4 import org.woehlke.computer.kurzweil.tabs.cca.view.CyclicCellularAutomatonFrame;
5
6
7
8
9
10
11
12
13 public class CyclicCellularAutomatonApplication {
14
15 private CyclicCellularAutomatonApplication() { }
16
17
18
19
20
21 public static void main(String[] args) {
22 ObjectRegistryil/tabs/cca/config/ObjectRegistry.html#ObjectRegistry">ObjectRegistry ctx = new ObjectRegistry();
23 CyclicCellularAutomatonFrame/CyclicCellularAutomatonFrame.html#CyclicCellularAutomatonFrame">CyclicCellularAutomatonFrame frame = new CyclicCellularAutomatonFrame(ctx);
24 }
25 }