Почему это ActionListener
не работает?Я пытался следовать инструкциям, но постоянно получаю ту же ошибку.
public class listenerTest implements ActionListener {
@Override //<-- This adds another error
public void actionPerformed(ActionEvent e)
{
System.out.println("Message"+e.toString());
System.exit(0);
}
}
И в другом файле:
loginButton.addActionListener(new listenerTest());
NetBeans говорит:
there are compilation errors on listenerTest class "listenerTest is not abstract and
does not override abstract method actionPerformed(ActionEvent) in ActionListener"`
и ошибка на @Override
говорит method does not override or implement a method from supertype
.
Любая помощь, как это исправить?