Tiese,
Actually, I could see "save to MyXML 2.0" from the menu option but I m confused how this text appears on the menu.
public String getName() {
return "Save to MyXML 2.0"; //$NON-NLS-1$
}
Also,
ContextMenuEntry subMenu1Export = new ContextMenuEntry(new SaveAcmeModelFeature(getFeatureProvider()), context);
subMenu1Export.setText("Export to My XML"); //$NON-NLS-1$
subMenu1Export.setSubmenu(false);
After adding the above code "Export to BPMN 2.0" got vanished and "Export to My XML" appears. I want both of them to get displayed.
————
2. I understand that graphiti tutorial helps to create palettes. But What I want is how the sequence of steps/java classes called
when I add some task in the BPMN editor. Suppose, If I add Manual Task , What all are the java classes called to perform this task?