Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to filter *.class in Open Resource dialog (Ctrl+Shift+R)? [duplicate]

Possible Duplicate:
How do I hide .class files from the Open Resource dialog in Eclipse?

A direct question:

How to filter *.class in Open Resource dialog (Ctrl+Shift+R) in Eclipse ?


UPDATE:

Explain better: I need to HIDE all *.class files...I'm programing in groovy/grails. So, when I do Ctrl+Shift+R to open Order.groovy (for example), I see Order.class too...and sometimes I open the wrong file.

My Eclipse is the STS (Spring Tool Suite)

like image 977
Topera Avatar asked May 11 '11 20:05

Topera


People also ask

How do I open resources in eclipse?

We can access it in two ways: Using the keyboard shortcut, which is Ctrl + Shift + R on a PC or Cmd + Shift + R on a Mac. Opening the menu under Navigate > Open Resource.

How do you hide a Java class file?

Go to Project > Properties > Java Build Path > Source > change default output folder to build1 Note: It will ask you to remove old folder and its content, Press No (to restore it later)


1 Answers

Not possible, to my knowledge.

But that should rarely be a problem - you usually use this dialog if you know the name of the resource, and they should rarely coincide with class names.

And if you want to open .java files, just use CTRL + SHIFT + T

like image 62
Bozho Avatar answered Sep 28 '22 03:09

Bozho