문제

I'd like to practice Eclipse 4 RCP application development, and my current goal is a graph modeling application. As far as I know GEF (Graphical Editing Framework) is the most reliable graphical framework, but it is Eclipse 3.x only. So I decided to create a plug-in only for the editor but I don't know how to insert the graphical editor's Part into the main plug-in's Application Model. What's more, how two plug-ins can communicate with each other?

도움이 되었습니까?

해결책

Plugins communicate through extension points, there are certain extension points defined by plugins to allow extending existing functionality. So I would suggest you reading about those things. Then find out if which extension points does plugin you are interested in offers and extend it. You may find extension points definitions in plugin.xml or in the documentation.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top