After launching the GMF project, I get a new window to make my own model.

After placing some nodes and connections, I should calculate according to their attributes. At first, HOW can I obtain all the information of every node and every connection?

link|improve this question
feedback

1 Answer

First , let's get the relevant editor:

DomainDiagramEditor d= (DomainDiagramEditor) PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().getActiveEditor();

Now, you can either get all the editparts in your diagram , getting the relevant model from them:

final List children = d.getDiagramEditPart().getChildren();

gets you a list of EditParts.

Or, you can get the model objects directly with:

EObject element = d.getDiagram().getElement();
EList<EObject> eContents_ = element.eContents();

That gives you a list of all the model objects in the active editor. Hope that answers your question

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.