In the Eclipse Helios Java Package Explorer, I see the Java class icons display a small question mark to the right of the 'J', something like [J?]. This icon is shown on each class within one package in my project, but I cannot find an explanation for this in the documentation.

At some point I expect them to disappear and be replaced with small orange rectangles. (Of which I'm also not certain of their meaning, but less worried of their connotation.) I suppose this question points to a larger one, are any of these icons defined together somewhere?

Thanks!

link|improve this question
feedback

4 Answers

up vote 8 down vote accepted

It means the class is not yet added to the repository.

If your project was checked-out (most probably a CVS project) and you added a new class file, it will have the ? icon.

For other CVS Label Decorations, check http://help.eclipse.org/help33/index.jsp?topic=/org.eclipse.platform.doc.user/reference/ref-cvs-decorations.htm

link|improve this answer
Aw, yes! Thanks, this answered my question. I've committed the package and class to CVS and the question marks are gone. – dfdumaresq Nov 29 '10 at 20:01
feedback

Here's a table of icons for the Java development environment in Eclipse.

Additional adornments can be made by plug-ins -- for example, version-control plug-ins.

link|improve this answer
This indeed provides me with a list of all the icons. Thank you! – dfdumaresq Nov 29 '10 at 20:03
Couldn't find this by doing search in eclipse help. The help pages on Label decorations just give general info and link to the Preferences page for enabling/disabling specific ones, without showing what they look like visually. – Cincinnati Joe Mar 21 at 20:14
feedback

In a SVN enabled project the small question mark indicates that your file is not yet added to the SVN repository.

The small orange rectangle is an indication that your file is committed in the repository.

An asterisk indicates a local change.

link|improve this answer
Yes, I see that now. Thanks! – dfdumaresq Nov 29 '10 at 20:05
feedback

It sounds like you're using Subclipse; is that correct? If so, there's a great list of decorators and their descriptions at this answer by Tim Stone.

Here's the relevant snippet for your case:

Unversioned File - A file not under version control. These are typically new files that you have not committed to the repository yet.
Synchronized File - A file with no local changes.

link|improve this answer
I'm using the CVS repository explorer (not sure if that uses Subclipse), but yes, this is a great list. Thanks! – dfdumaresq Nov 29 '10 at 20:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.