How can I receive from org.eclipse.gmf.runtime.notation.impl.ShapeImpl Object the corresponding EditPart? Or how can I receive from ShapeImpl(emf.ecore not runtime) the corresponding EditPart?

link|improve this question

73% accept rate
feedback

1 Answer

I think EditPartViewer's editPart Registery should be able to return you the editpart from the View model (ie shape).

EditPart ep = viewer.getEditPartRegistry().get(view);

I think that should do it.

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.