public ValidatorWrapper create(Annotation annot, Method method)
{
ValidateDouble annotation = (ValidateDouble) annot;
DoubleValidator validator = new DoubleValidator();
return create(validator, annotation.key(), annotation.order(), null, method);
}
}