}
private void setup(int min, int max) {
if(this.text != null) {
addValidators(
new TrimTransformer(this.text),
this.noMinMax?
new IntegerValidator(this.text):
new IntegerValidator(this.text, min, max)
);
}else {
addValidators(
new TrimTransformer(this.suggest),
this.noMinMax?
new IntegerValidator(this.suggest):
new IntegerValidator(this.suggest, min, max)
);
}