(ActionEvent e)
| 256 | JButton btnMarkAsSign = new JButton("Mark As Sign Para"); |
| 257 | btnMarkAsSign.addActionListener(new ActionListener() { |
| 258 | public void actionPerformed(ActionEvent e) { |
| 259 | if (table.getSelectedRow() != -1){ |
| 260 | signPara = table.getValueAt(table.getSelectedRow(), 0).toString(); |
| 261 | textFieldSign.setText(signPara); |
| 262 | } |
| 263 | } |
| 264 | }); |
| 265 | |
| 266 | JButton btnMoveDown = new JButton("Move Down"); |
nothing calls this directly
no test coverage detected