does anybody know if it is possible to set one //$NON-NLS annotation tag in java for all Strings in one line... maybe like this:
String[][] info = new String[][]{
{"a1", "a2"}, {"b1", "b2"}, {"c1", "c2"}, {"d1", "d2"} //$NON-NLS-ALL$
};
I like to prevent this long line of code:
String[][] info = new String[][]{
{"a1", "a2"}, {"b1", "b2"}, {"c1", "c2"}, {"d1", "d2"} //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$ //$NON-NLS-7$ //$NON-NLS-8$
};
thanks