(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-5210986377439243",
enable_page_level_ads: true
});
Swing contains two key items i.e components and containers.
Components are independent visual controls.
Conatiners builts a group...
Saturday, 15 April 2017
Various event classes and their description
ActionEvent - It is generated when a button is pressed, a list item is double clicked or a menu item is selected.
ItemEvent - It is generated when checkbox, list item is clicked or when checkable menu item is selected or de-selected or even occurs when choice selection is made.
FocusEvent...
Java AWT Event
Event classes are stored in java.awt.event package
Event handling mechanism
⟶Delegation Event Model
It is a modern approach.
It uses the concept of source and listener.
Source generates an event and sends it to one or more listeners.
Listener must register with the source to receive the...