我创建了一个动作监听器,监听 departureStop (组合框对象)是否有任何变化
departingStop.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//Lots of code here
}
});
我还想将此动作侦听器添加到另一个组合框(finalStop),而不必像这样创建一个单独的侦听器:
finalStop.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
//Lots of code here
}
});
如何实现这一目标?谢谢