With my own property editors the validation framework dont work. I think it is due to next code in SwingFormModel:
Code:
        ValueModel valueModel = getValueModel(formProperty);
        if (valueModel == null) {
            createFormValueModel(formProperty);
            // create above returns the display value model appyling the
            // property editor, the setter listener wants the 'wrapped' value
            // model...
            valueModel = getValueModel(formProperty);
        }
this valueModel is is the propertyAdapter valueModel, an dont check validation rules.

How can validate my own propertyEditors?

THANKS