GMF运行时表示法转换为EditPart

时间:2010-12-11 18:59:05

标签: java eclipse-plugin eclipse-emf eclipse-gmf

我如何从org.eclipse.gmf.runtime.notation.impl.ShapeImpl接收对应的EditPart?或者我如何从ShapeImpl(emf.ecore而不是运行时)接收相应的EditPart?

1 个答案:

答案 0 :(得分:4)

我认为EditPartViewer的editPart Registery应该能够从View模型(即形状)返回editpart。

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

我认为应该这样做。