if (methodName.startsWith("get")) methodName = methodName.substring(3);
else
if (methodName.startsWith("is")) methodName = methodName.substring(2);
FormElement element = method.getAnnotation(FormElement.class);
FormSchemas form = method.getAnnotation(FormSchemas.class);
if (form != null) {
for (FormElement e : form.value()) {
if (schema.equals(e.schema())) {
element = e;
break;
}