Skip to content

Commit 3188fba

Browse files
committed
* fixed #11 remove JApplet and integrate SimulatedEvolutionApplet into SimulatedEvolutionTab extends JFrame
* fixed #13 add application properties as Java and yml File * fixed #14 remove ObjectRegistry
1 parent 11b4cff commit 3188fba

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/main/java/org/woehlke/computer/kurzweil/cyclic/cellular/automaton/model/CyclicCellularAutomatonModel.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import lombok.Getter;
44
import org.woehlke.computer.kurzweil.cyclic.cellular.automaton.config.ComputerKurzweilProperties;
5+
import org.woehlke.computer.kurzweil.cyclic.cellular.automaton.model.neighbourhood.LatticeNeighbourhood;
56
import org.woehlke.computer.kurzweil.cyclic.cellular.automaton.view.CyclicCellularAutomatonFrame;
67
import org.woehlke.computer.kurzweil.cyclic.cellular.automaton.view.canvas.ColorScheme;
78

@@ -10,7 +11,7 @@
1011
import java.util.Date;
1112
import java.util.Random;
1213

13-
import static org.woehlke.computer.kurzweil.cyclic.cellular.automaton.model.LatticeNeighbourhood.*;
14+
import static org.woehlke.computer.kurzweil.cyclic.cellular.automaton.model.neighbourhood.LatticeNeighbourhood.*;
1415

1516
/**
1617
* Cyclic Cellular Automaton.
@@ -25,7 +26,7 @@
2526
*/
2627
public class CyclicCellularAutomatonModel implements Serializable {
2728

28-
private static final long serialVersionUID = -594681595882016258L;
29+
static final long serialVersionUID = -594681595882016258L;
2930

3031
private Random random;
3132

src/main/java/org/woehlke/computer/kurzweil/cyclic/cellular/automaton/model/LatticeNeighbourhood.java renamed to src/main/java/org/woehlke/computer/kurzweil/cyclic/cellular/automaton/model/neighbourhood/LatticeNeighbourhood.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.woehlke.computer.kurzweil.cyclic.cellular.automaton.model;
1+
package org.woehlke.computer.kurzweil.cyclic.cellular.automaton.model.neighbourhood;
22

33
/**
44
* Cyclic Cellular Automaton.

0 commit comments

Comments
 (0)