Refactor package names for intellij

This commit is contained in:
cs-powell
2024-12-05 23:48:34 -05:00
parent 9585fe9d4a
commit 2297854c28
30 changed files with 676 additions and 673 deletions

View File

@@ -1,19 +1,26 @@
import javax.swing.UIManager;
import com.formdev.flatlaf.FlatLightLaf;
import ModelFiles.Model;
//import CognitiveModel.ModelFiles.*;
public class Main {
public static void main(String[] args) {
// FlatLightLaf.setup();
// Encapsulation (or lack thereof) Test
Model m = new Model();
testprocess1 tp1 = new testprocess1(m, null);
// Model m = new Model();
// testprocess1 tp1 = new testprocess1(m, null);
// tp1.runProcess();
testprocess2 tp2 = new testprocess2(m, null);
tp2.runProcess();
// 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;
}
}
}
}