src/main/java/de/uapcore/sudoku/Sudoku.java

changeset 18
530f60fa3dc9
parent 15
fea6eaa0d520
equal deleted inserted replaced
17:aad33a4db18d 18:530f60fa3dc9
40 public Sudoku() { 40 public Sudoku() {
41 super("Sudoku"); 41 super("Sudoku");
42 42
43 Field f = new Field(); 43 Field f = new Field();
44 ActionHandler h = new ActionHandler(f); 44 ActionHandler h = new ActionHandler(f);
45 setJMenuBar(new MainMenu(h).getMenuBar()); 45 setJMenuBar(new MainMenu(h));
46 46
47 Container content = getContentPane(); 47 Container content = getContentPane();
48 48
49 content.setLayout(new GridBagLayout()); 49 content.setLayout(new GridBagLayout());
50 GridBagConstraints c = new GridBagConstraints(); 50 GridBagConstraints c = new GridBagConstraints();

mercurial