/** Tries to implement easy checks, using
* 1) source analysis
* 2) AST (javaCC)
* 3) bytecode through reflection
* 4) bytecode through ASM
*
* Tries only to implement what is not already contained in other bug finding tools as PMD and FindBugs:
* History: [Oct2007]
* + missing Overrides
* + missing OverrideMustInvoke (world premiere ?)
* + missing SubclassMustInvoke (own creation)
*/package tide.staticanalysis;
|