In Eclipse source code, I've found some '$NON-NLS-1$' in comments used like that :
private String toolTip = ""; //$NON-NLS-1$
What does that mean ?
|
In Eclipse source code, I've found some '$NON-NLS-1$' in comments used like that :
What does that mean ? |
|||
|
|
|
They silence a warning that Eclipse emits when it encounters string literals (and has been configured to complain). The idea is that UI messages should not be embedded as string literals, but rather sourced from a resource file (so that they can be translated, proofed, etc). Consequently, Eclipse can be configured to detect string literals, so that you don't accidentally have leave unexternalized UI strings in the code; however, there are strings which should not be externalized (such as regexps) and so, //$NON-NLS-1$ gives you a way to communicate that fact to the compiler. |
|||||||||||||||||||||
|
|
The string is not translatable. It tells the Eclipse editor to not flag the string as unresourced. This is important for multilingual applications. |
|||
|
|
|
If you are an Android developer. All strings the user may see should be in the resource file /res/values/strings.xml to read strings.xml file in the code you use R.string.. By adding the tag //$NON-NLS-$ you are noting that the string will not be seen by users. The warning in Eclipse Helios may be turned on at If you are planning on programming your activity to be multi-language, it would be recommended to turn this on. And then adding the &NON-NLS$ tag to strings that are internal to you activity. Eclipes will add &NON-NLS$ tag in the quick-fix if you right click on the warning or error. |
|||
|
|
|
It's used by Eclipse to indicate that a string doesn't need to be translated, probably because it's not going to be seen by the application's users. |
|||
|
|
It tells the compiler not to complain about a non externalized string, and that it don't require localization. |
|||||||||
|