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(); |