What does the > (greater than bracket) mean beside file names in Eclipse's Package Explorer?

JavaEclipse

Java Problem Overview


I'm setting up a new dev machine with Eclipse 3.7 Indigo. After pulling a my code down from SVN, the source tree in the Package Explorer is intermittently littered with a > to the left of the file name The parent package names have them too. (Note that this is an AspectJ project, but I don't think that matters.)

Package Explorer

What does the > indicate in the Eclipse Package Manager?

Java Solutions


Solution 1 - Java

It means the file has been modified as compared to the version in your source control repository.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionStu ThompsonView Question on Stackoverflow
Solution 1 - JavaChrisView Answer on Stackoverflow