(Component component, String title, Color initialColor, ActionListener listener)
| 24 | private Color selectedColor; |
| 25 | |
| 26 | public void showDialog(Component component, String title, Color initialColor, ActionListener listener) { |
| 27 | setListener(listener); |
| 28 | process(JColorChooser.showDialog(component, title, initialColor)); |
| 29 | unsetListener(); |
| 30 | } |
| 31 | |
| 32 | public Color getSelectedColor() { |
| 33 | return selectedColor; |
nothing calls this directly
no test coverage detected