Relequestual
Relequestual

Reputation: 12315

What happened to the package explorer in Eclipse?

I have recently been setting up SVN in Eclipse using the Subversive plugin (I am still a bit lost, but that's another issue).

I have been using this guide (http://soledadpenades.com/2008/12/10/add-svn-support-to-your-eclipse-installation/) and finally got it working! The only problem now is, I can't seem to find the Package Explorer, which is the only explorer I could ever seem to get working how I wanted it to (grouping projects into working sets).

Normally, you get it from going to WindowShow ViewOther, and then select it from the list. The only thing is, it's not IN the list of views... leaving me rather confused.

Just to be clear, I was using the package explorer before with no problems. I am running the latest version of everything as I did the auto update.

Any suggestions as to what is wrong here?

Upvotes: 14

Views: 42927

Answers (11)

Jeevan Reddy Gujjula
Jeevan Reddy Gujjula

Reputation: 71

Go to Window -> perspective -> Open Perspective -> Java. Now all the packages in Java will be displayed in the package explorer.

Upvotes: 0

gowtham
gowtham

Reputation: 1

On the right top you can select Java or JRE or whatever. That button might got changed. So click the neighbor buttons such as Java or something.

Upvotes: 0

jammies
jammies

Reputation: 111

Weirdly enough, although reset perspective didn't work, menu WindowNew window worked! It opened a new window with the perspectives reset.

Upvotes: 10

user2649191
user2649191

Reputation: 86

At the top right corner, there is a button called Open Perspective. Click on it, and then Java Default. Everything will come back to normal.

Upvotes: 4

Daniel
Daniel

Reputation: 666

For me I needed to do two things:

  • Reinstall the "Eclipse Java development tools" via HelpInstall SoftwareProgramming Languages
  • Delete and recreate the .metadata Eclipse Workspace settings.

Honestly, deleting the .metadata directory is probably sufficient - try that first.

Upvotes: 6

Relequestual
Relequestual

Reputation: 12315

Three answerers were helpful, however the only cure was to reinstall Eclipse and install the plugins again. Weird problem, and the exact cause not found. I may have deleted some files somehow, but a reinstall solved it.

Upvotes: 0

starblue
starblue

Reputation: 56772

You may be missing the JDT plugin containing the Package Explorer.

Upvotes: 1

Rich Seller
Rich Seller

Reputation: 84038

I'm guessing you've made it a fast view or minimised it to it. You could try holding down Ctrl + F7 to see a list of all views, then up/down arrow to the View. If Package Explorer is in the list it has been minimised or something.

If you select it and still can't see it, try WindowReset Perspective... to restore all views to their defaults.

Upvotes: 39

nkr1pt
nkr1pt

Reputation: 4666

Are you sure you are in the Java perspective?

As views are related to perspectives this could be the problem. The current perspective can be found in the upper right corner.

Upvotes: 1

Ian Mc
Ian Mc

Reputation: 101

Alt+Shift+Q worked for me when I was in debug mode.

Upvotes: 10

Bill
Bill

Reputation: 1

I think you were actually still in the Debug perspective, since that was what did it for me. As someone mentioned above, I had to go to the top right and hit "Java perspective" to get back to my normal views.

Upvotes: 0

Related Questions