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()?????
}