Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的应用程序中使用 RMI。所以使用接口是必须的。我想强制开发人员实现事件。所以我想在我的界面中声明事件方法。我怎样才能做到这一点?任何帮助将不胜感激。
public void handleXXXEvent(XXXEventType event);
whereXXX可以替换为 EventType 并且XXXEventType是事件的实例
XXX
XXXEventType
最好你可以让你的实现类注册到一个Listener
Listener
喜欢public void registerToXXXListener(XXXListner listener);
public void registerToXXXListener(XXXListner listener);