public void handleAnnotation(Annotation annotation) {
super.handleAnnotation(annotation);
if (!(annotation instanceof CharFieldProperties)) return;
CharFieldProperties props = (CharFieldProperties)annotation;
if (props.maxLength() != 0) {
this.setMaxLength(props.maxLength());
}
}