AWT Event Handling
postEvent() will send an event to the
Component (the toolkit
does this for you).
handleEvent() will handle it. This can be overridden.
handleEvent() classifies event and calls appropriate method -
action(), keyDown(), keyUp(), mouseDown(), ..., gotFocus(), lostFocus()
handleEvent() returns false, then the parent's
handleEvent() is called.