-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.java
More file actions
38 lines (27 loc) · 825 Bytes
/
Main.java
File metadata and controls
38 lines (27 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import javax.swing.*;
import CognitiveModel.ModelFiles.*;
import Visualizer.Screen;
import Visualizer.ScreenFrame;
import Visualizer.ScreenManager;
import Visualizer.visualizer;
import java.awt.*;
public class Main {
public static void main(String[] args) {
// Encapsulation (or lack thereof) Test
testprocess1 tp1 = new testprocess1();
tp1.runProcess();
// Screen s2 = new Screen(new GridLayout(1,2));
// s2.add(t3);
// s2.add(t4);
// testprocess2 tp2 = new testprocess2(m, null);
// tp2.runProcess();
// for (int i = 1; i<10; i++) {
// if (i%2 == 0) {
// int t = 0;
// } else if(i == 9) {
// System.out.println("Breaking now");
// break;
// }
// }
}
}