/**
* Notifies all the action listeners of the event.
*
* @param command the command
*/
private void notifyActionListeners(String command) {
ActionListener[] listeners = this.getListeners(ActionListener.class);
int size = listeners.length;
ActionEvent event = new ActionEvent(this, ActionEvent.ACTION_PERFORMED, command);
for (int i = 0; i < size; i++) {
listeners[i].actionPerformed(event);
}
}
SimulationTreePanel.java 文件源码
java
阅读 33
收藏 0
点赞 0
评论 0
项目:featurea
作者:
评论列表
文章目录