Back to JDT Core Component Development Resources page.
This tool can be used to add a new entry in the build notes. The user simply needs to provide the bug id and the tool adds the entry containing the bug description to the buildnotes. If the buildnotes are "closed", then they are reopened automatically. A new action is provided to close them.
This tool can be used remove unnecessary nls tags. It works on a java project, java package fragment root, java package fragment, or a compilation unit.
This tool can be used to check the positions of each DOM/AST nodes and its children. It works on a java project, java package fragment root, java package fragment, or a compilation unit.
...
// System.out.println(""); //$NON-NLS-1$
...
String s = "Hello, World"; //$NON-NLS-1$ don'//$NON-NLS-2$ removed
becomes:
String s = "Hello, World"; //$NON-NLS-1$ don' removed
String s = null; //$NON-NLS-1$<end of line>
becomes:
String s = null;<end of line>