Eclipse missing action Set
Asked Answered
S

4

17

I have a problem while opening Eclipse. In the error log it says:

unable to find action set org.eclipse.wb.core.ui.actionset 
       org.eclipse.rse.core.search.searchActionSet
       org.eclipse.rse.core.search.searchActionSet
       org.eclipse.mylyn.doc.actionSet
       org.eclipse.mylyn.context.ui.actionSet

I'm using Eclipse juno(version 4.2) and my ADT is version20 and Java 1.6 Do you have any idea what I am supposed to do?

Seiden answered 18/7, 2012 at 6:52 Comment(8)
Reinstall? It sounds like something in your base Eclipse installation is bad or missing.Caiaphas
I've just done it (install the same version) the installation completed with no problems but still the same errors appear.In my research what i found out was that most likely the problem would be a previous java version but here that's not the problem...Seiden
Other than the error log entries, what else is the problem? Often times there are strange entries in the error logs due to various minor problems with plugins.Caiaphas
Oh well,look I start working regularly in eclipse developing an app for android,In the first 3-4 hours the virtual device of android takes about 3-5 minutes after another 2-3hours it takes about 10,yesterday it wouldn't open at all by the end of the day.I figured it was because of the log errors.Could it be anything else?Seiden
Yes, I don't know anything about the Android stuff, but I imagine it's specific to that. I don't think it's related to this message. I would search Google for things related to "slowness using Eclipse with Android".Caiaphas
Consider these links for the slowness issue: https://mcmap.net/q/40377/-why-is-the-android-emulator-so-slow-how-can-we-speed-up-the-android-emulator #3210698Caiaphas
@FrancisUpton I've used the first og your links i've already seen the second.I've done the snapshot trick and it seems to work fine:) one question though,once i start from snapshot my logcat in eclipse seems as it's not connected with the emulator the only way is to open it from the command promt?or is there another way to start it from the eclipse?Seiden
I'm sorry I don't know anything about the Andriod Emulator. You might consider asking a separate question about that.Caiaphas
L
14

I think that this can happen when features are removed from Eclipse and a workspace is not properly updated. Create a new workspace, import all your projects, and delete the old workspace.

Lamppost answered 1/8, 2012 at 17:47 Comment(1)
You can use Imports -> General -> Existing Project into Workspace, but be careful that you don't import all your problems again.Wintertide
S
29

In general this is a leftover from something you have uninstalled. To get rid of the error, close Eclipse, find the workbench.xml (XML) and workbench.xmi (XMI) files in either the

.metadata\.plugins\org.eclipse.ui.workbench\

or

.metadata\.plugins\org.eclipse.e4.workbench\

directories within your workspace and remove ALL corresponding lines (search for the package name you see in the message).

Satanic answered 14/12, 2012 at 18:38 Comment(3)
I removed the directory (workspace)/.metadata/.plugins/org.eclipse.e4.workbench and problem went away. I've tried many things before, this was the only one that worked.Fertility
It's working, but the Eclipse must be stopped until editing both files.Waterresistant
I just reset my workspace by deleting <workspace>\.metadata\.plugins\org.eclipse.e4.workbench\workbench.xmi while eclipse was closed.Smattering
L
14

I think that this can happen when features are removed from Eclipse and a workspace is not properly updated. Create a new workspace, import all your projects, and delete the old workspace.

Lamppost answered 1/8, 2012 at 17:47 Comment(1)
You can use Imports -> General -> Existing Project into Workspace, but be careful that you don't import all your problems again.Wintertide
H
1

I went to the run configurations for the RCP app I had (created using EMF) and I checked the radio box under the Run--> configurations... dialog to "Clear workspace" before running. This fixed the issue about the missing ActionSets. I tried to find the references to the missing ActionSets per the above method and that did not fix the bug (there were no references to the missing ActionSets in the workbench.xml or workbench.xmi files. I am using Kepler SR2 on Mac OS X 10.9.2.

Humanitarianism answered 27/4, 2014 at 20:33 Comment(1)
"Run--> configurations... dialog to "Clear workspace" before running" did not fix the issue about the missing ActionSets BUT my app was able to start again. This saved me my nerves! Thanks!Aerodrome
V
0

I had this problem due to a particular view (although I'm not sure what caused it in the first place). I simply closed the view and restarted Eclipse - problem solved!

Verleneverlie answered 17/4, 2014 at 10:21 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.