// I'm not sure if @Form can be used on setter methods on an @Form field, but just in case...
if(formClass != null) {
//recurse into @Form parameters
final AnnotationDesc formAnnotation = Utils.findParameterAnnotation(method, parameter, 0, formClass);
if(formAnnotation != null) {
walkFormParameter(parameter.type().asClassDoc());
continue;
}
}
final AnnotationDesc contextAnnotation = Utils.findParameterAnnotation(method, parameter, 0, Context.class);
if (contextAnnotation == null) {