(Container c, String txt)
| 133 | } |
| 134 | |
| 135 | private JMenuItem createMenuItem(Container c, String txt) { |
| 136 | JMenuItem i = new JMenuItem(txt); |
| 137 | i.addActionListener(this); |
| 138 | c.add(i); |
| 139 | return i; |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Creates a new check box menu item to the given container |