()
| 594 | chooser.chooseAsync(control, Drawable.class, new Runnable() { |
| 595 | |
| 596 | @Override |
| 597 | public void run() { |
| 598 | List<XMLProperty> props = chooser.getList(); |
| 599 | if (!props.isEmpty()) { |
| 600 | Iterator<XMLProperty> it = props.iterator(); |
| 601 | while (it.hasNext()) { |
| 602 | XMLControl prop = (XMLControl) it.next(); |
| 603 | Drawable drawable = (Drawable) prop.loadObject(null); |
| 604 | addDrawable(drawable); |
| 605 | } |
| 606 | } |
| 607 | drawingPanel.repaint(); |
| 608 | } |
| 609 | |
| 610 | }); |
| 611 | } |
nothing calls this directly
no test coverage detected