AWT Event Adapters

  • Post author:
  • Post category:AWT
  • Post comments:4 Comments

Adapters are abstract classes for receiving various events. The methods in these classes are empty. These classes exists as convenience for creating listener objects. AWT Adapters: Following is the list…

Continue ReadingAWT Event Adapters

AWT FocusListener Interface

  • Post author:
  • Post category:AWT
  • Post comments:0 Comments

Introduction The interface FocusListener is used for receiving keyboard focus events. The class that process focus events needs to implements this interface. Class declaration Following is the declaration for java.awt.event.FocusListener interface: public interface…

Continue ReadingAWT FocusListener Interface