Is there a way to visually separate an inherited class member, i.e. a variable that is defined public/protected in a superclass?
I noticed that it's possible to stylize abstract members separately...
I'm using Eclipse Ganymede.
Is there a way to visually separate an inherited class member, i.e. a variable that is defined public/protected in a superclass?
I noticed that it's possible to stylize abstract members separately...
I'm using Eclipse Ganymede.
Open Window > Preferences.
Select General > Appearence > Colors and Fonts on the left.
On the right select Java > Inherited Members, and choose color you want.
This color will be used in hierarchy view for inherited members.
If you are talking about the editor, then you probably mean overridden methods (not inherited), right? If so, Eclipse indicates overridden methods in the editor with a green arrow pointing up to the left of the method signature. Clicking on the green arrow takes you to the super-classes implementation of the method.
As for actually changing the color of the text, I don't know - the green arrow has always been enough for me.