home *** CD-ROM | disk | FTP | other *** search
- class Clicker implements Runnable {
- int click;
- // $FF: renamed from: t java.lang.Thread
- private Thread field_0 = new Thread(this);
- private boolean running = true;
-
- public Clicker(int var1) {
- this.field_0.setPriority(var1);
- }
-
- public void run() {
- while(this.running) {
- ++this.click;
- }
-
- }
-
- public void stop() {
- this.running = false;
- }
-
- public void start() {
- this.field_0.start();
- }
- }
-