我正在编写一个需要对propertyChanges
做出反应的应用程序。我的结构如下:
State
单例(拥有其他属性)(LinkedHashMap<String, Mode>
(其中“模式”是单例对象))在某些情况下将propertychanges
发射到MainActivity
通过设置器更改。
但是我如何设法让“状态”触发哈希表内部的propertychanges
模式?
我尝试在模式下调用自实现的State.getInstance().firechange(PropertyChangeEvent evt)
,该模式应重定向propertychange
,但这样调用时不会触发任何操作。