373839404142434445
private UniverseContext currentUniverseContext; private MainWindow window; public Application() { this.window = new MainWindow(); this.window.createMenuBar(this); this.window.setVisible(true); }
3435363738394041
private Universe currentUniverse; private MainWindow window; public Application() { this.window = new MainWindow(this); this.window.setVisible(true); }
414243444546474849
private MainWindow window; private final Publisher publisher = new BasicPublisher(this); public Application() { this.window = new MainWindow(); this.window.createMenuBar(this); this.window.setVisible(true); }