Hello,
using 3.3M4 with Java 1.5, I created my own extension in my RCP application.
I created my editor using org.eclipse.ui.editors and org.eclipse.ui.editorActions.
I also have my own new extension point, which should add menu entries for my editor, so other plugin will be able to contribute. I have the code to read the extension point entries, but I don't know where to branch that code.
I tried in the createPartControl function of my EditorPart, but then I get multiple menu entries each time I open several editors.
What is the correct place to add my code ?