(Menu menu, String label, String command)
| 441 | } |
| 442 | |
| 443 | private static void addExample(Menu menu, String label, String command) { |
| 444 | MenuItem item = new MenuItem(label); |
| 445 | menu.add(item); |
| 446 | item.setActionCommand(command); |
| 447 | fixFontSize(item); |
| 448 | } |
| 449 | |
| 450 | void addOpenRecentSubMenu(Menu menu) { |
| 451 | openRecentMenu = getMenu("File>Open Recent"); |
no test coverage detected