A software engineer, somewhere, needs to have his abstraction taken away. In some countries they jail or beat people for writing the sort of API that would require a five line helper function just to set the command key for a menu item.
(String title, int what)
| 1337 | * just to set the command key for a menu item. |
| 1338 | */ |
| 1339 | static public JMenuItem newJMenuItem(String title, int what) { |
| 1340 | JMenuItem menuItem = new JMenuItem(title); |
| 1341 | menuItem.setAccelerator(KeyStroke.getKeyStroke(what, SHORTCUT_KEY_MASK)); |
| 1342 | return menuItem; |
| 1343 | } |
| 1344 | |
| 1345 | |
| 1346 | /** |
no outgoing calls
no test coverage detected