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