Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what can I do to make display the bin folder on eclipse?

Tags:

can anyone help me solve the issue that I have ? in fact when I create a project on eclipse, the bin folder doesn't display and I am able to create a javadoc for my project. I need help please.

like image 672
Anzo31 Avatar asked Nov 12 '10 10:11

Anzo31


2 Answers

I don't know what the reason for your question but you can see the bin directory in Project Explorer (not Package Explorer). Here you click the triangle and select Customize View... and remove the click on Java output folders

alt text

like image 144
nanda Avatar answered Oct 04 '22 06:10

nanda


To change this behaviour and hide the “.class” files you need to do the following.

  1. Find your class output folder in the “Project explorer” window. This is usually called “bin” or “target” for Maven projects

  2. Right-click this folder and click “Properties”

  3. Tick the “Derived” checkbox and click “OK”

“.class” files will now be hidden in future.

Source: http://ayubmalik.co.uk/2011/12/hide-class-files-when-opening-a-type-or-resource-in-eclipse-ide/

like image 39
Eduardo Cuomo Avatar answered Oct 04 '22 05:10

Eduardo Cuomo