NewHintsI18NNPE
New Java Hints (I18N, NPE Check)
This is proposal for new Java hints in Editor.
I18N
Example
JLabel l = new JLabel("foo");
Hint suggesting either internationalization of string or adding of //NOI18N will appear.
NPE Check
Example
String foo = null;
for (i=0; i<foo.lenght(); i++) {
...
}
A warning "null dereference" should appear.

