Refactor package names for intellij
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user