(Base b)
| 64 | |
| 65 | |
| 66 | static public void init(Base b) { |
| 67 | base = b; |
| 68 | file = Base.getSettingsFile(FILENAME); |
| 69 | mainMenu = new JMenu(Language.text("menu.file.recent")); |
| 70 | toolbarMenu = new JMenu(Language.text("menu.file.open")); |
| 71 | |
| 72 | try { |
| 73 | load(); |
| 74 | } catch (IOException e) { |
| 75 | e.printStackTrace(); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | |
| 80 | static protected void load() throws IOException { |
no test coverage detected