*/
.description("How much money? (1..5)")
/**
* set a custom validator for the property
*/
.validator(new PropertyValidator() {
public boolean isValid(String s) throws ValidationException {
try {
final int i = Integer.parseInt(s);
if (i <= 0 || i >= 6) {
//throw ValidationException to indicate a problem, with a reason