+ "InitableByConstraintMap");
}
}
// field may have been declared as always required in the xml spec
Rule reqRule = (Rule) field.getRuleMap().get("required");
if (reqRule != null)
{
alwaysRequired = new Boolean(reqRule.getValue()).booleanValue();
}
Rule maxLengthRule = (Rule) field.getRuleMap().get("maxLength");
if (maxLengthRule != null)
{
maxSize = maxLengthRule.getValue();
}
// map the getter and setter methods
mapToObject = field.getMapToObject();
String propName = field.getMapToProperty();