AWT LayoutManager Interface

  • Post author:
  • Post category:AWT
  • Post comments:1 Comment

Introduction The interface LayoutManager is used to define the interface for classes that know how to layout Containers. Class declaration Following is the declaration for java.awt.LayoutManager interface: public interface LayoutManager Interface methods S.N.Method…

Continue ReadingAWT LayoutManager Interface

AWT Layouts

  • Post author:
  • Post category:AWT
  • Post comments:1 Comment

Introduction Layouts means the arrangement of components within the container. In other way we can say that placing the components at a particular position within the container. The task of…

Continue ReadingAWT Layouts

AWT KeyAdapter Class

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

Introduction The class KeyAdapter is an abstract (adapter) class for receiving keyboard events. All methods of this class are empty. This class is a convenient class for creating listener objects. Class declaration…

Continue ReadingAWT KeyAdapter Class