(Color c)
| 58 | |
| 59 | |
| 60 | private void process(Color c) { |
| 61 | if (c instanceof UIResource) |
| 62 | return; |
| 63 | selectedColor = c; |
| 64 | listener.actionPerformed(new ActionEvent(this, c == null ? 0 : c.getRGB(), c == null ? null : c.toString())); |
| 65 | } |
| 66 | |
| 67 | } |
no test coverage detected