我有一个 jlabel 并使用 netbeans 我将它绑定到表单上的一个属性。
问题是当标签文本绑定到的属性发生更改时,如何刷新绑定值。this.firePropertyChange 有效,但闻起来很糟糕......我想要类似 this.bindingGroup.refresh 或 this.refresh 的东西,它会更新标签文本
例如 jLabel.text 必然形成 someValue
private someClass someThing;
public String getSomeValue(){
return someThing.getSomeThing();
}
//when someMethof is fired the jlabel should update its text value
public void someMethod(){
someThing = someThingElse;
bindingGroup.refresh()?????
}