Event Listeners in Java

后端 未结 5 669
陌清茗
陌清茗 2021-02-06 03:44

I\'ve been working with event listeners in AS3, but seems like there is none in java (except for graphics components). It\'s surprising.

The question is, how could i imp

5条回答
  •  耶瑟儿~
    2021-02-06 03:54

    You can implement kind of listeners in Java extending Observable class for the objects you want to observe, and on the listeners, you implement Observer.

提交回复
热议问题