Basic AWT Components
For each basic component, one can create one or more instances of the component type and then use one of the "add" methods to place it into a Container such as an applet window.
For now, we assume that components are added to the window in order from left to right and top to bottom as they fit. (This is actually the default FlowLayout Manager).
For each component, there will be methods:
- some affect the properties or appearance, such as setBackground or setFont, which are inherited from the Component class.
- others may dynamically obtain or change information about the component, such as getText for TextFields, which may return whatever String the user has typed into the TextField.