static void addDirectMenuItem(JMenuBar mb, S text, O action) { if (mb != null) mb.add(directJMenuItem(text, action)); } static void addDirectMenuItem(Component c, S text, O action) { addDirectMenuItem(addMenuBar(c), text, action); }