1 |
This package contains all the classes to create graphical user interfaces.
|
2 |
It allows some primitive drawing (in a subpackage called graphics).
|
3 |
It has a number of components corresponding to parts of a windowing interface
-
basic components like buttons, textfields, lists, scrollbars, etc.
-
components such as panel and frame which allow you to place a number of other components within them. This is hierarchical.
|
4 |
There are layout managers to help arrange the components.
|
5 |
There are events and a model to handle events that come from user interactions such as clicking a button or typing in text.
-
import awt.*;
-
and import awt.event.*;
|