I created an EMF editor that is handeling a specific task in itself. As
soon as the element is created (through mouseclicking) the editor
synchronizes perfectly and everything works just fine.
The problem is, that I need the Child created programmatically by a right
click on my gmf editor.
I have no problem getting the name for the child Element. I know I can
create a child element with my FactoryImpl.createChildElement() and set
the name on the returned object.
But how can I add the element to the model of the EMF editor so it gets
updated, undo is supported and so on..
basically I try to use the action that is give through the UI by
rightclicking on a node, creating a child but only programmatically.