alex
alex

Reputation: 5721

Highlight files in Eclipse

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

Answers (1)

jeeeyul
jeeeyul

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

Related Questions