Java:向多个组合框添加相同的动作侦听器

时间:2017-05-06 11:45:06

标签: java callback actionlistener anonymous-types

我创建了一个动作监听器,监听 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
     }
});

如何实现这一目标?谢谢

0 个答案:

没有答案