(ListSelectionEvent e)
| 287 | } |
| 288 | |
| 289 | @Override |
| 290 | public void valueChanged(ListSelectionEvent e) |
| 291 | { |
| 292 | if (availTable != null && !e.getValueIsAdjusting()) |
| 293 | { |
| 294 | if (e.getSource() == availTable.getSelectionModel() && availTable.getSelectedObject() instanceof InfoFacade target) |
| 295 | { |
| 296 | InfoFactory factory = chooser.getInfoFactory(); |
| 297 | if (factory != null && target != null) |
| 298 | { |
| 299 | infoPane.setText(factory.getHTMLInfo(target)); |
| 300 | } |
| 301 | } |
| 302 | } |
| 303 | } |
| 304 | |
| 305 | private void doOK(final javafx.event.ActionEvent event) |
| 306 | { |
nothing calls this directly
no test coverage detected