use of com.centurylink.mdw.plugin.designer.dialogs.ExportAsDialog in project mdw-designer by CenturyLinkCloud.
the class WorkflowElementActionHandler method exportAs.
public void exportAs(WorkflowElement selection) {
WorkflowProcess processVersion = (WorkflowProcess) selection;
open(processVersion);
ProcessEditor procEd = (ProcessEditor) findOpenEditor(processVersion);
ExportAsDialog saveImageDialog = new ExportAsDialog(getShell(), processVersion, procEd.getProcessCanvasWrapper().getFlowchartPage());
saveImageDialog.open();
}
use of com.centurylink.mdw.plugin.designer.dialogs.ExportAsDialog in project mdw-designer by CenturyLinkCloud.
the class ProcessCanvasWrapper method exportAs.
public void exportAs(Shell shell) {
ExportAsDialog exportAsDialog = new ExportAsDialog(shell, getProcess(), flowchartPage);
exportAsDialog.open();
}
Aggregations