I am creating my own GEF based graphical editor. It creates error markers when validation fails and the editor has a gotoMarker method to find and active the marker. This all works.

Only problem is that I get a RuntimeException when double clicking on the marker (when clicking 'GoTo' from the context menu there is no problem) The message is as follows:

java.lang.RuntimeException: WARNING: Prevented recursive attempt to activate part org.eclipse.ui.views.ProblemView while still in the middle of activating part namespace.myEditorID`

Part of the corresponding stacktrace shows:

at org.eclipse.ui.internal.WorkbenchPage.setActivePart(WorkbenchPage.java:3586)
...
at org.eclipse.swt.widgets.Display.eventProc(Display.java:1245)
at org.eclipse.swt.internal.gtk.OS._gtk_enumerate_printers(Native Method)
at org.eclipse.swt.internal.gtk.OS.gtk_enumerate_printers(OS.java:9296)
at org.eclipse.swt.printing.Printer.getPrinterList(Printer.java:98)
at org.eclipse.gef.ui.actions.PrintAction.calculateEnabled(PrintAction.java:45)
at org.eclipse.gef.ui.actions.WorkbenchPartAction.isEnabled(WorkbenchPartAction.java:123)
...

The complete stacktrace is a bit long, so it is available at pastebin.

This gave me the idea to disable the printing action in ActionBarContributor.declareGlobalActionKeys by removing:

addGlobalActionKey(ActionFactory.PRINT.getId());

This solves the RuntimeException...?!

I do not see the relation between the Printing action and going to the corresponding object after clicking on a marker. Leaving the Printing action disabled, of course, is not a solution.

So what can I do to keep the Printing action available and prevent these RuntimeExceptions?

link|improve this question

67% accept rate
Do you have a fuller stack trace? Where was your call to addGlobalAction key? – katsharp Jan 26 at 18:06
I cannot access the fuller stacktrace at the moment, I'll post it tomorrow. But basically it looks like (all) actions are being checked whether they need to be enabled or not. the addGlobalActionKey is/was called in ActionBarContributor.declareGlobalActionKeys – Veger Jan 26 at 22:22
@katsharp I added a link the complete stacktrace – Veger Jan 27 at 10:02
Hey, is it possible this is your problem? bugs.eclipse.org/bugs/show_bug.cgi?id=355401 – katsharp Jan 27 at 18:55
I have seen that bug report, it is stated fixed. But the fix itself is not really attached... Furthermore, bug report talks about being slow because the list of available is fetch over and over. Mine application is not slow, it generates exception because seems to be trying to activate the 'Problems view' and my editor (because it needs to go to the double clicked error). To me it seemed a different problem, even though the stack traces are very similar. But I could be wrong of course. – Veger Jan 28 at 22:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.