(MouseEvent event)
| 217 | final JLabel warningLabel = new JLabel(embed ? embedWarning : nopeWarning); |
| 218 | warningLabel.addMouseListener(new MouseAdapter() { |
| 219 | public void mousePressed(MouseEvent event) { |
| 220 | Platform.openURL(JAVA_DOWNLOAD_URL); |
| 221 | } |
| 222 | }); |
| 223 | warningLabel.setBorder(new EmptyBorder(3, 13, 3, 13)); |
| 224 | // warningLabel.putClientProperty("FlatLaf.styleClass", "medium"); |
nothing calls this directly
no test coverage detected