(ActionEvent e)
| 208 | item = new JMenuItem(tr("Comment/Uncomment"), '/'); |
| 209 | item.addActionListener(new ActionListener() { |
| 210 | public void actionPerformed(ActionEvent e) { |
| 211 | handleCommentUncomment(); |
| 212 | } |
| 213 | }); |
| 214 | menu.add(item); |
| 215 |
nothing calls this directly
no test coverage detected