Eclipse: How can I change the color of the final keyword if possible?

I am using Eclipse 3.7.1. In the settings → editor-> syntax coloring there is no element for the final keyword in Java, you can only change the syntax coloring of the return keyword and "all other keywords". I seem to be out of luck.

+4
source share
2 answers

As error 193336 is shown, color preferences are available only for all keywords or for a specific one when it is explicitly required (for example, in this case, " return ").

In fact, you can see the related patch for this error, as the preference was implemented.

+4
source

The following link presents various topics for eclipse: http://marketplace.eclipse.org/content/eclipse-color-theme

But I believe that the FINAL keyword cannot be highlighted.

0
source

Source: https://habr.com/ru/post/1383357/


All Articles