Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse Folder is transparent/grayed out. What does it mean?

My jni folder in Eclipse looks like this:

enter image description here

It is grayed out and has a diagonal line across it. What does it mean? I can still edit my native C++ code in this folder and see the changes as I test the application.

like image 525
Placeable Avatar asked May 02 '13 15:05

Placeable


2 Answers

It means the directory is being filtered from the source locations. It seems you can use this to exclude files that are not source from a source folder, although I've never used it.

I got rid of this irritation in Eclipse Indigo CDT by:

(Project) Properties ->C/C++ General ->Paths and Symbols ->Source Location Tab ->Edit Filter... ->Remove

like image 109
doughgle Avatar answered Sep 25 '22 14:09

doughgle


You probably have something in the folder that is deprecated.

http://help.eclipse.org/indigo/index.jsp?topic=/org.eclipse.jdt.doc.user/reference/ref-icons.htm

like image 32
Spermato Avatar answered Sep 24 '22 14:09

Spermato