Reputation: 5721
In Eclipse, is it possible to highlight a file in the Package Explorer?
What I want is to highlight the operational classes (putting green for example, which means that I do not have to return above) to identify those that should be reviewed.
Or there is another way to identify visually some files?
Upvotes: 0
Views: 77
Reputation: 3787
Yes you can. Try to look at Label Decorator extension Point .
And you decorator should implements org.eclipse.jface.viewers.ILightweightLabelDecorator. See also org.eclipse.jface.viewers.IDecoration
Upvotes: 1