vote up 0 vote down star
2

Hi,

sorry, to post my question again, but didn't have an account when asking first, so I can't edit my question and give some further information... perhaps someone can delete the first thread or link it here?

So, my plugin has to write to the eclipse console - for testing purpose I simplified my code, so that I only have the following:

public void start(BundleContext context) throws Exception {
    	super.start(context);
    	plugin = this;
    	System.out.println("Tecomp Plugin is running");

    	MessageConsole myConsole = new MessageConsole("My Console", null);
    	//myConsole.activate();
    	ConsolePlugin.getDefault().getConsoleManager().addConsoles(new IConsole[]{ myConsole });
    	ConsolePlugin.getDefault().getConsoleManager().showConsoleView(myConsole);
    	final MessageConsoleStream stream = myConsole.newMessageStream();
    	stream.setActivateOnWrite(true);
    	stream.println("Hi there!");
    	stream.close();
    }

It's a simple plugin, the method start belogs to the class extending AbstractUIPlugin - it't no rcp application. Code works fine inside the runtime workbench - once the plugin is installed, the output gets lost somewhere. The rest of the plugin is working properly.

Is there perhaps a problem with the ConsolePlugin? Or are streams handled differently in the runtime workbench and the development workbench?

I tried both - a feature project and directly copying the plugin jar to the eclipse directory - for installing the plugin - same result for both...

Any help is welcome, because I'm struggeling with that problem for a while now...

Regards, Kathi

---------------------edit--------------------------------------------------

it doesn't seem to be a problem of the Console... I provided my own view for printing the output, but although declard in the plugin.xml there is no view after installing the plugin... here is what I did: -export the plugin with the ExportWizard into a jar-archive -copied this archive to /usr/share/eclipse/plugins -restarted eclipse

or with a feature project: -exported the feature-project containing my plugin with the ExportWizard -removed the above jar archive from the eclipse dir -installed the feature -restarted eclipse

both didn't word - did I get something wrong with installing the plugin? The jar-archive is ok, I checked it - it's the latest version. But somehow it seems that eclipse is still working with some older plugin without the changes I made

regards, Kathi

----------------edit--------------------------

I implemented the IStartup Interface end extended the org.eclipse.ui.startup point, but nothing changed... I really thinks it's an installation problem somehow. I commented out some output but it's still printed to the debug console. Is there some sort of plugin cache in eclipse? So that the new code doesn't get read?

----------------edit--------------------------

thx for the suggestions, but starting eclipse with the -clean option didn't help - I'll try to install the plugin in some other environment next week - perhaps there is something wrong with mine...

flag

5 Answers

vote up 0 vote down

Probably should've commented on this one instead of the other one, see my comment on the other thread.

link|flag
vote up 0 vote down

Another possibility then is that the plugin you are installed is cached in the installation. You can start eclipse with the -clean option to remove all the cached plugins from the workspace

link|flag
vote up 0 vote down

I think the problem is that your plugin is not being started. The code you show won't be activated until some other plug-in tries to access something within your plugin. It seems like this is the case with your debug launch configuration, but not with the packaged application.

You could try to implement the IStartup interface, and use the org.eclipse.ui.startup extension point in your plugin to force the initialization as soon as the UI is loaded. This should activate your plugin and execute the console code that you have.

Can you maybe add some logging statement or breakpoint in the start() method to ensure that it is being invoked on your deployed application?

link|flag
didn't help at all - see my edit above. runtime-workbench works fine - as before. And the plugin definitely IS running after installation, syntax highlighting etc. is working - but somehow it seems to be some older version running... don't know where the problem is – Kathi Apr 7 at 16:36
vote up 0 vote down

Sounds to me the eclipse application where you try to install your plugin into might not have the org.eclipse.ui.console plugin installed that you need to have as a plugin dependency. Did you check that your plugin has the correct plugin dependencies and that it is installed without a problem?

link|flag
org.eclipse.ui.console is listed as dependency in my plugin and is also installed inside the eclipse application. Plugin installs without problems... – Kathi Apr 6 at 16:29
vote up 0 vote down

The Eclipse console has a list that is shown when a small triangle (pointing down) at the top left is clicked. Does your console appear there? I believe it should. If it is then select the console to see the contents that you are logging there.

link|flag
no, my console does not appear there – Kathi Apr 6 at 11:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.