我正在尝试使用 JGoodies Binding 2.9.1 将enabled
a 的属性绑定JTextField
到枚举属性。我希望这是一种单向操作:当属性更改时,我希望JTextField
启用或禁用它,但我不想走另一种方式并根据enabled
值设置 enum 属性。
尽管我认为我已正确设置了所有内容,但我得到了PropertyAccessException: Failed to set an modified Java Bean property。
我的模型是带有属性更改事件的标准 Java Bean:
public static String MY_PROPERTY = "myProperty";
private MyEnum myProperty;
public MyEnum getMyProperty() { return myProperty; }
public void setMyProperty(final MyEnum newValue) {
final MyEnum oldValue = myProperty;
if (newValue == oldValue) { return; }
myProperty = newValue;
changeSupport.firePropertyChange(MY_PROPERTY, oldValue, newValue);
}
在我看来,我有一个单向转换器,当绑定值与提供的值匹配时,它将返回 true:
private final class EnumMatchToEnabledConverter implements BindingConverter<MyEnum, Boolean> {
private MyEnum match;
public EnumMatchToEnabledConverter (MyEnum match) {
this.match = match;
}
@Override
public Boolean targetValue(MyEnum source) {
return (source == match);
}
@Override
public MyEnum sourceValue(Boolean target) {
// this wouldn't make sense
throw new UnsupportedOperationException();
}
}
然后我设置绑定:
PresentationModel<MyModel> pm = new PresentationModel<MyModel>(model);
Bindings.bind(
myTextField, "enabled", new ConverterValueModel(
pm.getModel(MyModel.MY_PROPERTY),
new EnumMatchToEnabledConverter(MyEnum.MyValue)));
令我惊讶的是,EnumMatchToEnabledConverter
'ssourceValue()
方法被调用,并且因为它引发了一个UnsupportedOperationException
我PropertyAccessException
从绑定中得到一个。
我还尝试明确告诉绑定不要使用 setter,但我仍然得到相同的行为:
Bindings.bind(
myTextField, "enabled", new ConverterValueModel(
pm.getModel(MyModel.MY_PROPERTY, "getMyProperty", null), // null setter!
new EnumMatchToEnabledConverter(MyEnum.MyValue)));
我哪里错了?