org.eclipse.swt.SWTError: Item not added - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T21:56:41Z http://stackoverflow.com/feeds/question/84147 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/84147/org-eclipse-swt-swterror-item-not-added 2 org.eclipse.swt.SWTError: Item not added Banengusk 2008-09-17T14:58:57Z 2009-07-22T15:16:11Z <p>Does somebody know how to recover a never-starting eclipse when the error "org.eclipse.swt.SWTError: Item not added" is raising againg and again?</p> <p>I'm using WebSphere Studio Site Developer (Windows) 5.1.0</p> <p>The only stack trace in the .metadata/log file is:</p> <p><code>SESSION ----------------------------------------------------------------------<br /> !ENTRY org.eclipse.core.launcher 4 0 sep 17, 2008 16:39:00.564<br /> !MESSAGE Exception launching the Eclipse Platform:<br /> !STACK<br /> java.lang.reflect.InvocationTargetException: java.lang.reflect.InvocationTargetException: org.eclipse.swt.SWTError: Item not added<br /> at java.lang.Throwable.&lt;init&gt;(Throwable.java)<br /> at java.lang.Throwable.&lt;init&gt;(Throwable.java)<br /> at org.eclipse.swt.SWTError.&lt;init&gt;(SWTError.java:82)<br /> at org.eclipse.swt.SWTError.&lt;init&gt;(SWTError.java:71)<br /> at org.eclipse.swt.SWT.error(SWT.java:2358)<br /> at org.eclipse.swt.SWT.error(SWT.java:2262)<br /> at org.eclipse.swt.widgets.Widget.error(Widget.java:385)<br /> at org.eclipse.swt.widgets.Menu.createItem(Menu.java:464)<br /> at org.eclipse.swt.widgets.MenuItem.&lt;init&gt;(MenuItem.java:77)<br /> at org.eclipse.ui.internal.AcceleratorMenu.setAccelerators(AcceleratorMenu.java:177)<br /> at org.eclipse.ui.internal.WWinKeyBindingService.updateAccelerators(WWinKeyBindingService.java:316)<br /> at org.eclipse.ui.internal.WWinKeyBindingService.clear(WWinKeyBindingService.java:175)<br /> at org.eclipse.ui.internal.WWinKeyBindingService.update(WWinKeyBindingService.java:267)<br /> at org.eclipse.ui.internal.WWinKeyBindingService$1.partActivated(WWinKeyBindingService.java:107)<br /> at org.eclipse.ui.internal.PartListenerList$1.run(PartListenerList.java:49)<br /> at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006)<br /> at org.eclipse.core.runtime.Platform.run(Platform.java:413)<br /> at org.eclipse.ui.internal.PartListenerList.firePartActivated(PartListenerList.java:47)<br /> at org.eclipse.ui.internal.WorkbenchPage.firePartActivated(WorkbenchPage.java:1180)<br /> at org.eclipse.ui.internal.WorkbenchPage.onActivate(WorkbenchPage.java:1833)<br /> at org.eclipse.ui.internal.WorkbenchWindow$7.run(WorkbenchWindow.java:1496)<br /> at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)<br /> at org.eclipse.ui.internal.WorkbenchWindow.setActivePage(WorkbenchWindow.java:1483)<br /> at org.eclipse.ui.internal.WorkbenchWindow.restoreState(WorkbenchWindow.java:1363)<br /> at org.eclipse.ui.internal.Workbench.restoreState(Workbench.java:1263)<br /> at org.eclipse.ui.internal.Workbench.access$10(Workbench.java:1223)<br /> at org.eclipse.ui.internal.Workbench$12.run(Workbench.java:1141)<br /> at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006)<br /> at org.eclipse.core.runtime.Platform.run(Platform.java:413)<br /> at org.eclipse.ui.internal.Workbench.openPreviousWorkbenchState(Workbench.java:1093)<br /> at org.eclipse.ui.internal.Workbench.init(Workbench.java:870)<br /> at org.eclipse.ui.internal.Workbench.run(Workbench.java:1373)<br /> at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)<br /> at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)<br /> at java.lang.reflect.AccessibleObject.invokeL(AccessibleObject.java:207)<br /> at java.lang.reflect.Method.invoke(Method.java:271)<br /> at org.eclipse.core.launcher.Main.basicRun(Main.java:291)<br /> at org.eclipse.core.launcher.Main.run(Main.java:747)<br /> at org.eclipse.core.launcher.Main.main(Main.java:583)</code> </p> http://stackoverflow.com/questions/84147/org-eclipse-swt-swterror-item-not-added/86716#86716 0 Answer by Banengusk for org.eclipse.swt.SWTError: Item not added Banengusk 2008-09-17T19:30:32Z 2008-09-17T19:30:32Z <p>Well, some things you can try are:</p> <ol> <li>Delete workspace .metadata dir. Obviously you will lose your workbench configuration.</li> <li>Rename your .metadata dir. Start Eclipse, and you will have a new .metadata dir. Close Eclipse, delete the new dir, and rename back the original dir. It sometimes works.</li> </ol> http://stackoverflow.com/questions/84147/org-eclipse-swt-swterror-item-not-added/107006#107006 1 Answer by Jon Ball for org.eclipse.swt.SWTError: Item not added Jon Ball 2008-09-20T03:45:37Z 2008-09-20T03:51:20Z <p>Does restarting your computer resolve the problem with being able to open the workspace? There is a forum post (<a href="http://forums.sun.com/thread.jspa?messageID=3131484#3131484" rel="nofollow">http://forums.sun.com/thread.jspa?messageID=3131484#3131484</a>) that describes a similar problem with an identical stack trace as the one shown above. In the post, the author mentions that their machine was low on resources (they did not specify what type of resources were running low). </p> <p>If restarting your computer does not work, you may want to try starting eclipse with the clean option:</p> <p><strong>eclipse -clean</strong></p> <p>The clean option will clean out any caches that Eclipse has created. </p> <p>If all else fails, you may want to open a bug for this problem at <a href="https://bugs.eclipse.org/bugs/" rel="nofollow">https://bugs.eclipse.org/bugs/</a>. Including a copy of your workspace (if possible), and including the stack trace in the bug would be helpful information for the person trying to diagnose the problem.</p> <p>Good Luck!</p> http://stackoverflow.com/questions/84147/org-eclipse-swt-swterror-item-not-added/1166040#1166040 0 Answer by Ellen for org.eclipse.swt.SWTError: Item not added Ellen 2009-07-22T15:16:11Z 2009-07-22T15:16:11Z <p>I had exactly the same problem. I did not restart my machine, and just used "eclipse -clean" to start eclipse. It worked. Thanks Jon for the hint.</p>