I am new to java and AWT.
I am a bit confused about Event Dispatching. When an event happens on a component whether it will be delivered directly to component or it will be send to the top most container and container will traverse the hierarchy and send it to the component?
When event occurs, it will dispatch based on hierarchy ordering of its containing components.
For ex: A contains B, B contains C, then if event in C occurs, it dispatch to B first, then to A, .etc.
Hth.