I am trying to create a console in Eclipse that includes some additional feature on top of the normal MessageConsole
. To include those extra actions I created a class that extends TextConsolePage
and I override the createActions()
method much like the IOConsolePage
.
The setup above works great, however the console that is created does not autoscroll when content is added. I've tried to add autoscrolling ability by adding my own viewer and mimicking IOConsoleViewer
, but when I do that I get a
NoClassDefFoundError: org/eclipse/jface/text/IDocumentListener
I have org.eclipse.text
and org.eclipse.jface.text
both as require plug-ins in my dependencies, so I am not quite sure why I'd get this error. Anyone know what I can do to get past it?