假设我有一个对象,表示数据库表,它有属性,表示当前选定的行:
class MyTable {
private IntegerProperty currentRow ...
public IntegerProperty currentRowProperty() {
return currentRow;
}
public int getCurrentRow() {
return currentRow.get();
}
public void setCurrentRow(int newValue) {
currentRow.setValue(newValue);
}
}
现在我希望有一个额外的显式只读实体来表示该行是否可以移动到上一个(绑定到“上一个”按钮)。
如果我用Binding实现它
class MyTable {
private BooleanBinding previousExist = currentRowProperty().greaterThan(0);
public BooleanBinding previousExistBinding() {
return previousExist;
}
public boolean isPreviousExist() {
return previousExist.get();
}
}
我会违反JavaFX属性模式,因为返回的类将是绑定,而不是属性。
因此,我需要将结果包装到属性中,但是如何?
如果我写
class MyTable {
private ReadOnlyBooleanPropertyBase previousExist = new ReadOnlyBooleanPropertyBase() {
@Override
public boolean get() {
return getIndex() >= 0;
}
...
}
}
我将无法依赖变更报告,并且需要明确监听索引更改并将其向前发送。
那么,如何实施?
答案 0 :(得分:1)
private ReadOnlyBooleanWrapper previousExist;
{
ReadOnlyBooleanWrapper ans = new ReadOnlyBooleanWrapper();
ans.bind( currentRowProperty().greaterThan(0) );
previousExist = ans;
}
public ReadOnlyBooleanProperty previousExist() {
return previousExist.getReadOnlyProperty();
}
public boolean isPreviousExist() {
return previousExist().get();
}