Browsing all posts in "event".

Swing Packages and Classes

Here is a short description of each package in the Swing libraries:
javax.accessibility
Contains classes and interfaces that can be used to allow assistive technologies to interact with Swing components. Assistive technologies cover a broad range of items, from audible text readers to screen magnification. Although the accessibility classes are technically not part of Swing, they [...]

Hot Time

Sure….. in this time we try to make timer with java
here the source code:
import java.awt.*;
import javax.swing.*;
/**
* Demo komponen timer
*
* @author Didik Dwi Prasetyo, [didik_rpl at yahoo dot com]
* @version 1.00
*/
public class TimerSwing extends JFrame {
public TimerSwing() {
super(”TimerSwing”);
// Menciptakan objek JTimeLabel
[...]