Hi,
it is possible to hook into the eclipse modeler and implement a custom save action.
But you would have to dig into the code yourself.
If you start with something new now, then I would definitely recommend starting on top of bpmn.io.
Daniel
BpmnModelInstance modelInstance = Bpmn.createEmptyModel();Definitions definitions = modelInstance.newInstance(Definitions.class);
definitions.setTargetNamespace("http://camunda.org/examples");
modelInstance.setDefinitions(definitions);Process process = modelInstance.newInstance(Process.class);
process.setId("process");
definitions.addChildElement(process);