Reputation: 9708
I have in my package and project explorers a large number of projects. These projects are of mixed type. Is there a way I can visually tell, say, which of these projects are python or which of these are java or ... So I notice if you open a project there is a small icon which tells you what type it is, but I cannot keep all my projects open. Maybe there is a filter which only displays projects of type x?
I see a question which is very minimally tangential to mine but which requires greater effort to actually probe each project for its type.
Upvotes: 1
Views: 8323
Reputation: 8849
You can identify project type by the project type decorator icons in the project explorer. In the picture shown below.
You can see M letter indicate maven project type. J letter Indicates Java project type similarly you can find indicator for C, C++, Python etc projects.
Project having no letter is know as General project.
To filter different projects you can use "Working sets". See here
Check this plugin
Upvotes: 1
Reputation: 10646
When open you will get an icon decorator, a small "J" in top left corner for Java projects. Something similar should be present for Python projects as well. But as you pointed out, these are only seen when the project is open. Here are some alternatives:
Keep separate workspaces. Have one workspace for Java development where you only import the java projects, and a separate for all Python projects. This works well unless you very often work with several projects of different natures at the same time.
Use working sets. You can sort projects into several working sets, that will help you to organize projects according to their natures. Then set Package explorer to show Working sets as top level element. See the view menu in package explorer view. See this.
Use Mylyn. Mylyn will enable a task focused view that will only show your projects relevant to the current task. If you are working against a task repository such as Jira or Bugzilla, then this is very effective and I strongly recommend you try it out.
I would suggest alternative 2 + 3.
Upvotes: 2