use of com.centurylink.mdw.plugin.designer.wizards.ExportAttributesWizard in project mdw-designer by CenturyLinkCloud.
the class WorkflowElementActionHandler method exportAttributes.
public void exportAttributes(String attributePrefix, WorkflowElement element) {
if (element instanceof WorkflowPackage || element instanceof WorkflowProcess) {
ExportAttributesWizard exportAttributesWizard = new ExportAttributesWizard();
exportAttributesWizard.init(getWorkbench(), element);
exportAttributesWizard.setPrefix(attributePrefix);
new WizardDialog(getShell(), exportAttributesWizard).open();
}
}
Aggregations