When implementing an interface you are required to override all public methods that exist in the interface. For FocusListener there is focusGained() and focusLost(). You don't have to do anything in either method, but you have to at least implement the method itself.
I use the MouseListener interface a lot and it has 4 methods you have to implement. I usually only use 1 of them, so the other ones just all sit there empty.
[ April 26, 2004: Message edited by: Gregg Bolinger ]