Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [pde-dev] classpath

hello,

i think that the problem is that:
i have a project wich containe classe ProjectAnalyse wich containe 'a method projectAnalyser.
and i have developped a new a plugin,
in the method run of this plugin i have made the call to my first method of the project.

public void run(IAction action) {
		ProjetAnalyse pa = new ProjetAnalyse();
		pa.projectAnalyser();
}

when i run this pugin it diplay a new window eclipse. in this window i have a button that let me execute the plugin.

in this window i create a new project. and this project is used in the body of the methode projectAnalyser();

when i clic on the button
It is giving following :
Unhandled exception caught in event loop.
ican help me to solve this problem.
thanks


From: Philip Borlin <pborlin@xxxxxxxxxxx>
Reply-To: pde-dev@xxxxxxxxxxx
To: pde-dev@xxxxxxxxxxx
Subject: Re: [pde-dev] classpath
Date: Wed, 10 Dec 2003 15:44:00 -0700

Double click on the plugin.xml of the plugin having classpath problems to bring up the PDE editor. Go to the dependencies tab, click on the add button, and select the plugin you depend on. Right click in the box containing all of the plugins and select "Compute Build Path". That should set up your classpath.

-Phil

laila l wrote:
Hi
using Eclipse How to set classpath for other class residing in other
plugins.

_________________________________________________________________
MSN Search, le moteur de recherche qui pense comme vous ! http://fr.ca.search.msn.com/

_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/pde-dev




_______________________________________________
pde-dev mailing list
pde-dev@xxxxxxxxxxx
http://dev.eclipse.org/mailman/listinfo/pde-dev

_________________________________________________________________
MSN Messenger : discutez en direct avec vos amis ! http://messenger.fr.msn.ca/



Back to the top