Although JSR-305 is about static analysis of code. Its' run-time counterpart isn't ready yet. Following my question I want to ask if there's a suitable annotation processor which could detect that method parameters are not correct based on annotations for those parameters?
=== Edit ===
What I'm actually looking for is not a model validation (model = collection of beans) but something more like aspect weaving I could seamlessly integrate into my tests suite.
Would this be something like the standard bean validation scheme established in JSR-303 (implemented by, for instance, hibernate validator).
Btw, looks like JSR-305 has been inactive since 2006, so I wouldn't hold my breath on that to develop further...