/**
* we're using the existing behaviors to keep a correct DRYness
*/
@Override
public void modify(final FormComponent<?> component, final ComponentTag tag, final Size annotation) {
SizeBag bag = new SizeBag(getLabelString(component),annotation.min(), annotation.max());
final ParsleyMinLengthValidationBehavior minValidator =
new ParsleyMinLengthValidationBehavior(annotation.min(),
getLocalizedMessage(component, annotation.message(), bag));
minValidator.onComponentTag(component, tag);
final ParsleyMaxLengthValidationBehavior maxValidator