(String path, String[] hexColors)
| 295 | |
| 296 | |
| 297 | static private ImageIcon[] renderIcons(String path, String[] hexColors) { |
| 298 | int count = hexColors.length; |
| 299 | ImageIcon[] outgoing = new ImageIcon[count]; |
| 300 | for (int i = 0; i < count; i++) { |
| 301 | outgoing[i] = Toolkit.renderIcon(path, hexColors[i], ICON_SIZE); |
| 302 | } |
| 303 | return outgoing; |
| 304 | } |
| 305 | |
| 306 | public void empty() { |
| 307 | mode = NOTICE; |