use of com.centurylink.mdw.designer.display.GraphFragment in project mdw-designer by CenturyLinkCloud.
the class GraphClipboard method getInstance.
public static GraphClipboard getInstance() {
if (singleton == null) {
graphFragmentFlavor = new DataFlavor(GraphFragment.class, "GraphFragment");
singleton = new GraphClipboard();
}
return singleton;
}
Aggregations