.settings/de.mvmsoft.checkclipse.prefscustom-checks to
extension-lib.MarkerHandler.CheckclipseBuildRunner
<module name="Checker">
<!-- default severity is "warning" -->
<property name="severity" value="warning"/>
<module name="TreeWalker">
....
/**
* @return some interesting int
*/
// CSOFF: LeftCurlyCheck
public int suppressIt()
{ // this should be suppressed because of CSOFF
int A = 0; // this should not be suppressed, because only LeftCurlyCheck is suppressed
}
// CSON: LeftCurlyCheck