Ola.
 
Existe alguma forma de fazer uma "inner class" utilizando uma interface?
Estou tentando fazer algo do tipo:
 
textField.addActionListener (new ActionListener(){
        public void actionPerformed(ActionEvent e){
               ...
        }
} );
 
E obtenho a seguinte mensagem de erro:
interface java.awt.event.ActionListener is an abstract class. It can´t be instantiated.

Responder a