レイアウトと単一のボタンを持つクラスがあります。関数でブール値が変更されたかどうかを検出できる組み込みのメソッドまたは機能があるかどうか疑問に思っていました。私は他のブール値の混乱でそれを行うことができましたが、よりエレガントな方法を探していました. 「オブザーバー」と関係があると思いますが、完全にはわかりません。
コードの簡略版は次のとおりです。
Class checker{
boolean test1 = true;
boolean test2 = true;
checker(){
checkNow.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e)
{
//code to manage, and possibly change the value of the booleans test1 and test2.
//is there any built in function in java where i can test to see if the value of the booleans was changed in this actionListener function?
}
}});
}