}
@Override
public Vote previewExpandedChange(Rollup rollup) {
if (this.component == null) {
BXMLSerializer bxmlSerializer = new BXMLSerializer();
try {
this.component = (Component)bxmlSerializer.readObject(KitchenSink.class, "dragdrop.bxml");
} catch(IOException exception) {
throw new RuntimeException(exception);
} catch(SerializationException exception) {
throw new RuntimeException(exception);
}
this.imageView1 = (ImageView)bxmlSerializer.getNamespace().get("imageView1");
this.imageView2 = (ImageView)bxmlSerializer.getNamespace().get("imageView2");
this.imageView3 = (ImageView)bxmlSerializer.getNamespace().get("imageView3");
rollup.setContent(this.component);
DragSource imageDragSource = new DragSource() {
private Image image = null;