Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Ticker.java
Package: BattleTank1.0.rar [view]
Upload User: jhzhutan
Upload Date: 2021-03-28
Package Size: 374k
Code Size: 1k
Category:
Shot Game
Development Platform:
Java
- import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
- import java.io.PrintStream;
- //Download:http://www.codefans.net
- public class Ticker
- implements Runnable
- {
- ActionListener al;
- private boolean isTicking;
- Thread t;
- int delay;
- public Ticker(int i, ActionListener actionlistener)
- {
- al = actionlistener;
- delay = i;
- t = new Thread(this);
- t.start();
- isTicking = false;
- }
- public Ticker(int i)
- {
- delay = i;
- t = new Thread(this);
- t.start();
- isTicking = false;
- }
- public void addActionListener(ActionListener actionlistener)
- {
- if(al == null)
- al = actionlistener;
- else
- System.out.println("WARNING: ActionListener already added to Ticker.");
- }
- public boolean isRunning()
- {
- return isTicking;
- }
- public void start()
- {
- isTicking = true;
- }
- public void stop()
- {
- isTicking = false;
- }
- public void setDelay(int i)
- {
- delay = i;
- }
- public int getDelay()
- {
- return delay;
- }
- private void fireActionPerformed()
- {
- if(al == null || !isTicking)
- {
- return;
- } else
- {
- ActionEvent actionevent = new ActionEvent(this, 0, null);
- al.actionPerformed(actionevent);
- return;
- }
- }
- public void run()
- {
- do
- {
- fireActionPerformed();
- try
- {
- Thread.sleep(delay);
- }
- catch(InterruptedException interruptedexception)
- {
- System.out.println("WARNING: Ticker thread interrupted.");
- }
- } while(true);
- }
- }