public class BigramGUIApp { public static void main(String[] args) { if (args.length < 1) { System.err.println("Bruk: java BigramGUIApp "); System.exit(1); } BigramModel model = new BigramModel(); javax.swing.SwingUtilities.invokeLater(() -> { GUIView view = new GUIView(); GUIController controller = new GUIController(model, view); controller.start(args[0]); }); } }