event handing model

hiI read the java API , it introducte the event is occured by component(such as button) .But i can't find any method to occured event , only methods hande the event?Is event object occured from java run-time ? Then pass to component ?
[256 byte] By [aixin803ea] at [2007-10-2 15:18:57]
# 1

If a key is pressed or the mouse is moved etc. the information needed is send to VM (by the OS) and passed on to the component responsible for it. The component builds some event object and sends it to the Listeners where the event is handled.

But there are event sending methods - they are named

fire...

. So user created events are possible and may be useful.

mezlera at 2007-7-13 14:25:19 > top of Java-index,Security,Event Handling...
# 2
sir i wants to know about super() and this word, how to use ?
786rajeeva at 2007-7-13 14:25:19 > top of Java-index,Security,Event Handling...