Java AWT :
Java AWT for Abstract windows toolkit. The AWT is part of the Java Foundation Classes (JFC) the standers API for providing Graphical user Interfaces(GULs)for java programs.The AWT contains numerous classes and methods that allow you to create and mange windows. Although the main Purpose of the AWT is to support applet windows, it can also be used to create stand-alone windows that run in a GUI environment, such as windows.
Java AWT Hierarchy :
Container :
The Container is a component in AWT that can contain another components like buttons, textfields, labels etc. The classes that extends Container class are known as container such as Frame, Dialog and Panel.
Methods :
- void Add(Component c)
- void remove(Component c)
- void setLayout(LayoutManager m)
- void validate()
- int getComponentCount()
- component getComponentAt(int x,int y)
Window :
The window is the container that have no borders and menu bars. You must use frame, dialog or another window for creating a window.
Methods :
- Windows(Frame owner)
- Windows(Windows owner)
Panel :
The Panel is the container that doesn't contain title bar and menu bars. It can have other components like button, textfield etc.
Frame :
The Frame is the container that contain title bar and can have menu bars. It can have other components like button, textfield etc.
Useful Methods of Component class :
Method | Description |
---|---|
public void add(Component c) | inserts a component on this component. |
public void setSize(int width,int height) | sets the size (width and height) of the component. |
public void setLayout(LayoutManager m) | defines the layout manager for the component. |
public void setVisible(boolean status) | changes the visibility of the component, by default false. |
0 Comments:
Post a Comment