Advanced Java Programming (17625) : Event Handling
Advanced Java Programming (17625) : Event Handling
Advanced Java Programming (17625) : Event Handling
(17625)
Event Handling
20 Marks
Specific Objectives
2
The Delegation Event Model
3
The Delegation Event Model : Event
Event is an object that describes a state change in a
source.
Some action we have to performed when it is generated.
Generated when user is interacted with components.
Example: Pressing Button, Selecting item from list etc.
It can be also generated when timer expires, counter
value exceeds, software and hardware failure etc.
4
Event Source
Source is an object that generates an event.
This occurs when the internal state of that object
changes.
Sources may generate more than one type of event.
Sources must be register listener so that listener will
receive notifications.
For Register/add:
public void addTypeListener(TypeListener el)
For remove:
public void removeTypeListener(TypeListener el)
5
Event Listener
Two requirements:
It must have been registered with one or more sources to
receive notifications.
It must implement methods to receive and process these
notifications.
6
Event Classes
Event Classes are core of Java’s event handling
mechanism.
EventObject is the root of the Java event class
hierarchy which is present in java.util.
It is the superclass for all events.
Constructor: EventObject(Object src).
EventObject class has defines two methods:
Object getSource( ) : method returns the source of the event.
String toString( ) : returns string equivalent of the event.
7
Event Classes : AWTEvent
Summarize:
EventObject is a superclass of all events.
AWTEvent is a superclass of all AWT events that are
handled by the delegation event model.
8
Summary
9
Event Classes : Diff classes
ActionEvent
ComponentEvent
ContainerEvent
FocusEvent
ItemEvent
KeyEvent
MouseEvent
TextEvent
WindowEvent
10
ActionEvent
Generated when a button is pressed, a list item is
double-clicked, or a menu item is selected.
ActionEvent class defines four integer constants that
can be used to identify any modifiers associated with an
action event:
ALT_MASK, (8)
CTRL_MASK, (2)
META_MASK, (4)
SHIFT_MASK. (1)
In addition, an integer constant,
ACTION_PERFORMED (1001), which can be used
to identify action events 11
ActionEvent
Constructors:
ActionEvent(Object src, int type, String cmd)
ActionEvent(Object src, int type, String cmd, int modifiers)
ActionEvent(Object src, int type, String cmd, long when, int
modifiers)
src: object which generate event
type: type of event
cmd: Command string
modifiers: which modifier key
when: when the event occurred
12
ActionEvent
getActionCommand() used to get command name.
int getModifiers() used to get modifier key.
long getWhen( ) used to get when event generated.
13
ComponentEvent class
A ComponentEvent is generated when the size,
position, or visibility of a component is changed.
There are four types of component events
Constructor:
ComponentEvent(Component src, int type)
14
ContainerEvent class
ContainerEvent is generated when a component is
added to or removed from a container.
Two Constants defined
COMPONENT_ADDED and
COMPONENT_REMOVED
Subclass of ComponentEvent Class
Constructor:
ContainerEvent(Component src, int type, Component comp)
15
FocusEvent class
FocusEvent is generated when a component gains or
loses input focus.
Two constants defined:
FOCUS_GAINED and FOCUS_LOST.
Constructors:
FocusEvent(Component src, int type)
FocusEvent(Component src, int type, boolean temporaryFlag)
Focus Event(Component src, int type, boolean
temporaryFlag, Component other)
isTemporary( ) method indicates if this focus change is
temporary.
16
ItemEvent Class
ItemEvent is generated when a check box or a list item
is clicked or when a checkable menu item is selected or
deselected.
Item events:
DESELECTED The user deselected an item.
SELECTED The user selected an item.
ITEM_STATE_CHANGED that signifies a change of state.
Constructor:
ItemEvent(ItemSelectable src, int type, Object entry, int state)
17
KeyEvent Class
KeyEvent is generated when keyboard input occurs.
There are three types of key events:
KEY_PRESSED,
KEY_RELEASED, and
KEY_TYPED
Constructor:
KeyEvent(Component src, int type, long when, int modifiers,
int code)
KeyEvent(Component src, int type, long when, int modifiers,
int code, char ch)
18
KeyEvent Class
There are many other integer constants that are defined
by KeyEvent.
19
MouseEvent Class
Eight types of mouse events.
The MouseEvent class defines the following integer
constants
MOUSE_CLICKED The user clicked the mouse.
MOUSE_DRAGGED The user dragged the mouse.
MOUSE_ENTERED The mouse entered a component.
MOUSE_EXITED The mouse exited from a component.
MOUSE_MOVED The mouse moved.
MOUSE_PRESSED The mouse was pressed.
MOUSE_RELEASED The mouse was released.
MOUSE_WHEEL The mouse wheel was moved
20
MouseEvent Class
MouseEvent is a subclass of InputEvent.
Constructor:
MouseEvent(Component src, int type, long when, int
modifiers, int x, int y, int clicks, boolean triggersPopup)
21
TextEvent Class
These are generated by text fields and text areas when
characters are entered by a user or program.
TextEvent defines the integer constant
TEXT_VALUE_CHANGED.
Constructor:
TextEvent(Object src, int type)
22
WindowEvent Class
There are ten types of window events.
WindowEvent class defines integer constants:
WINDOW_ACTIVATED The window was activated.
WINDOW_CLOSED The window has been closed.
WINDOW_CLOSING The user requested that the window be closed.
WINDOW_DEACTIVATED The window was deactivated.
WINDOW_DEICONIFIED The window deiconified (min => Normal).
WINDOW_GAINED_FOCUS The window gained input focus.
WINDOW_ICONIFIED The window was iconified(Normal=>min)
WINDOW_LOST_FOCUS The window lost input focus.
WINDOW_OPENED The window was opened.
WINDOW_STATE_CHANGED The state of the window changed.
23
WindowEvent Class
WindowEvent is a subclass of ComponentEvent.
24
Adapter Class
An adapter class provides an empty implementation of
all methods in an event listener interface.
Adapter classes are useful when you want to receive and
process only some of the events that are handled by a
particular event listener interface.
Example:
25
Adapter Class : Different Classes
ComponentAdapter ComponentListener
ContainerAdapter ContainerListener
FocusAdapter FocusListener
KeyAdapter KeyListener
MouseAdapter MouseListener
MouseMotionAdapter MouseMotionListener
WindowAdapter WindowListener
26
Inner Class
Inner class is class which defined in another class.
In inner classes, the Adapter class will defined in same
class.
No need of passing reference of object as it is in same
scope.
Ex.
27
Anonymous Inner Class
An anonymous inner class is one that is not assigned a
name.
Ex.
28
Event Listeners Interfaces
Event Delegation Model has two parts: Sources and
Listeners.
When event generated, then event source invoked
appropriate method defined by interface.
29
Action Listener Interface
30
ComponentListener Interface
Defines four methods to recognize when a component is
hidden, moved, resized, or shown.
void componentResized(ComponentEvent ce)
void componentMoved(ComponentEvent ce)
void componentShown(ComponentEvent ce)
void componentHidden(ComponentEvent ce)
31
ContainerListener Interface
Defines two methods to recognize when a component is
added to or removed from a container.
void componentAdded(ContainerEvent ce)
void componentRemoved(ContainerEvent ce)
32
FocusListener Interface
Defines two methods to recognize when a component
gains or loses keyboard focus.
void focusGained(FocusEvent fe)
void focusLost(FocusEvent fe)
33
ItemListener Interface
Defines one method to recognize when the state of an
item changes.
void itemStateChanged(ItemEvent ie)
34
KeyListener Interface
Defines three methods to recognize when a key is
pressed, released, or typed.
void keyPressed(KeyEvent ke)
void keyReleased(KeyEvent ke)
void keyTyped(KeyEvent ke)
35
MouseListener Interface
Defines five methods to recognize when the mouse is
clicked, enters a component, exits a component, is
pressed, or is released.
void mouseClicked(MouseEvent me)
void mouseEntered(MouseEvent me)
void mouseExited(MouseEvent me)
void mousePressed(MouseEvent me)
void mouseReleased(MouseEvent me)
36
MouseMotionListener Interface
Defines two methods to recognize when the mouse is
dragged or moved.
void mouseDragged(MouseEvent me)
void mouseMoved(MouseEvent me)
37
TextListener Interface
Defines one method to recognize when a text value
changes.
void textValueChanged(TextEvent te)
38
WindowFocusListener Interface
Defines two methods to recognize when a window gains
or loses input focus
void windowGainedFocus(WindowEvent we)
void windowLostFocus(WindowEvent we)
39
WindowListener Interface
Defines seven methods to recognize:
void windowActivated(WindowEvent we)
void windowClosed(WindowEvent we)
void windowClosing(WindowEvent we)
void windowDeactivated(WindowEvent we)
void windowDeiconified(WindowEvent we)
void windowIconified(WindowEvent we)
void windowOpened(WindowEvent we)
40