android - Exclude annotated methods from checkstyle-check -
in android-project i'm trying integrate checkstyle. i'm using androidannotations, few methods have declared this:
@click(r.id.toggleplay) protected final void dopauseresume() { }
they need protected in order generated class able call them. how teach checkstyle disable few warnings, based on @click
annotation, (or more broadly, based on annotation in org.androidannotations.annotations
package)?
the class has other protected
methods, want keep being checked, of course.
do need implement filter?
Comments
Post a Comment