Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Right click in eclipse is not working?

Tags:

eclipse

My right click is not working in eclipse.I tried to work on servlet so i downloaded javaEE to work and used yesterday (Aug 13 2014) after i didn't used my eclipse which I am using regularly today i started working on the android in my regular eclipse.When i started working on the project my right click not working in package explorer. Also in Window --> show view showing blank.

These are the different trials i have done.

restarting the eclipse.

Change the work space.

restarted the computer.

But the problem is not solved.

like image 815
Niranjan Avatar asked Aug 14 '14 05:08

Niranjan


People also ask

How do I enable open declaration in Eclipse?

Go to Project properties,Select Project Facets then convert to project facets then click Ok then you will able to open editor.

How do I fix eclipse not responding?

If there is a project you earlier imported externally (outside of Workspace), that may cause this problem. If you can access Eclipse try to remove it. If you are getting the 'No responding at startup', then go delete the file at source. This will solve the problem.


2 Answers

You may try clearing SOCKS proxy if your company using a proxy server.

Window → Preferences → Network Connections → Select SOCKS → Click on Clear (Make sure you have proxy server listed in it).

like image 98
Sairam Kukadala Avatar answered Sep 21 '22 17:09

Sairam Kukadala


Turn on error view in Eclipse: Window -> Show View -> Other. Search for Error

There you'll most likely find errors in the log, which will tell you which plugin prevents the menu from opening.

For example, I found:

java.lang.NullPointerException at de.anbos.eclipse.easyshell.plugin.commands.DefineCommands.createContributionItems(DefineCommands.java:49) at org.eclipse.ui.internal.menus.ContributionFactoryGenerator.compute(ContributionFactoryGenerator.java:72) at org.eclipse.e4.ui.workbench.renderers.swt.ContributionRecord.mergeFactoryIntoModel(ContributionRecord.java:271)

Fixing EasyShell plugin config solved the problem for me

like image 25
Brimstedt Avatar answered Sep 19 '22 17:09

Brimstedt