ingenias.editor.events.ObjectTreeFlavor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sociaalmled Show documentation
Show all versions of sociaalmled Show documentation
A editor for modelling scenarios for PHAT simulator
package ingenias.editor.events;
import ingenias.editor.widget.DnDJTreeObject;
import java.awt.datatransfer.DataFlavor;
public class ObjectTreeFlavor extends DataFlavor {
public static final ObjectTreeFlavor SINGLETON = new ObjectTreeFlavor();
private ObjectTreeFlavor() {
super(DnDJTreeObject.class, null);
}
}