Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-dev] com.example.helloworld

Hi,

I am new to developing plugins for eclipse, so I followed the Hello World example to create a sample plugin.
But when I try to run it I get the following error ;

It seems that the plugin is disabled . Could anyone please help me out with this problem ?


Thanks
~ Joseph ~


Error Jun 12, 2004 11:14:58.446 Attempt to activate a disabled plug-in: "com.example.helloworld".

Error Jun 12, 2004 11:14:58.902 Plug-in com.example.helloworld was unable to load class com.example.helloworld.HelloWorldView.
java.lang.ClassNotFoundException: com.example.helloworld.HelloWorldView
at org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLo ader.java:404) at org.eclipse.osgi.framework.adaptor.core.AbstractClassLoader.loadClass(Ab stractClassLoader.java:93)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:235)
at org.eclipse.osgi.framework.internal.core.BundleLoader.loadClass(BundleLo ader.java:307) at org.eclipse.osgi.framework.internal.core.BundleHost.loadClass(BundleHost .java:336) at org.eclipse.osgi.framework.internal.core.AbstractBundle.loadClass(Abstra ctBundle.java:1313) at org.eclipse.core.internal.registry.ConfigurationElement.createExecutable Extension(ConfigurationElement.java:131) at org.eclipse.core.internal.registry.ConfigurationElement.createExecutable Extension(ConfigurationElement.java:124) at org.eclipse.core.internal.registry.ConfigurationElement.createExecutable Extension(ConfigurationElement.java:113) at org.eclipse.ui.internal.WorkbenchPlugin$1.run(WorkbenchPlugin.java:187) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPlugin.createExtension(WorkbenchPlugin. java:184) at org.eclipse.ui.internal.registry.ViewDescriptor.createView(ViewDescripto r.java:67)
	at org.eclipse.ui.internal.ViewFactory$1.run(ViewFactory.java:282)
at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform. java:615)
	at org.eclipse.core.runtime.Platform.run(Platform.java:758)
at org.eclipse.ui.internal.ViewFactory.busyRestoreView(ViewFactory.java: 254)
	at org.eclipse.ui.internal.ViewFactory$2.run(ViewFactory.java:511)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.ViewFactory.restoreView(ViewFactory.java:509)
	at org.eclipse.ui.internal.Perspective.showView(Perspective.java:1574)
at org.eclipse.ui.internal.WorkbenchPage.busyShowView(WorkbenchPage.java: 763) at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:743) at org.eclipse.ui.internal.WorkbenchPage$13.run(WorkbenchPage.java:2972) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:2969) at org.eclipse.ui.internal.WorkbenchPage.showView(WorkbenchPage.java:2953) at org.eclipse.ui.internal.ShowViewMenu.showOther(ShowViewMenu.java:203)
	at org.eclipse.ui.internal.ShowViewMenu$2.run(ShowViewMenu.java:68)
	at org.eclipse.jface.action.Action.runWithEvent(Action.java:881)
at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(Ac tionContributionItem.java:915) at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContribut ionItem.java:866) at org.eclipse.jface.action.ActionContributionItem$7.handleEvent(ActionCont ributionItem.java:785)
	at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:82)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1196)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1220)
	at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1205)
	at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:1053)
	at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2867)
	at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2537)
	at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1363)
	at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1334)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java: 253)
	at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:141)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:96) at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActiva tor.java:334) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java: 273) at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java: 128)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav a:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor Impl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:324)
	at org.eclipse.core.launcher.Main.basicRun(Main.java:185)
	at org.eclipse.core.launcher.Main.run(Main.java:638)
	at org.eclipse.core.launcher.Main.main(Main.java:622)



Back to the top