[Eclipse RCP org.eclipse.ui.forms]Erreur au lancement
Je développe une application RCP et je souhaite utiliser des IEditorInput pour créer mes éléments en base de données.
J'ai vu ce type de dev sur le projet POJO Editor RCP (Sourceforge).
Afin de compiler mon projet j'ai rajouté dans l'onglet Dependencies du fichier plugin.xml org.eclipse.ui.forms.
Ca compile mais lorsque je test l'application, j'ai l'erreur suivante:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
java.lang.RuntimeException: Application "MaussangRCP.application " could not be found in the registry. The applications available are: org.eclipse.core.runtime.initializer.
at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:68)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication (EclipseAppLauncher.java:92)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:400)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run (EclipseStarter.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.eclipse.core.launcher.Main.invokeFramework(Main.java:336)
at org.eclipse.core.launcher.Main.basicRun(Main.java:280)
at org.eclipse.core.launcher.Main.run(Main.java:977)
at org.eclipse.core.launcher.Main.main(Main.java:952) |
Je ne sais pas d'où vient le problème.
Je travaille avec Eclipse 3.2 sous Ubuntu.