List of usage examples for java.lang Runnable interface-usage
From source file JSON.JasonJSON.java
/** * * @author BULLOJP */ public abstract class JasonJSON implements Runnable {
From source file Main.java
class PaintSurface extends JComponent implements Runnable { int i = 0; public void run() { repaint(); }
From source file com.lfv.lanzius.application.FootSwitchController.java
/**
* <p>
* The FootSwitchController is monitoring a usb attached foot switch and checks
* the switch periodically. When the switch is closed the actionRadioTalkButtonPressed
* is called on the ApplicationBase and when the switch is opened the
* actionRadioTalkButtonReleased is called. This module uses ftdi d2xx
From source file org.rhwlab.BHCnotused.Algorithm.java
/** * * @author gevirl */ public class Algorithm implements Runnable { public void init(int seg) {
From source file br.com.estudogrupo.online.DicionarioOnline02.java
/** * * @author higor */ public class DicionarioOnline02 implements Runnable {
From source file edu.umd.cs.hcil.twitterreplay.ProducerTask.java
/** * * @author cbuntain */ public class ProducerTask implements Runnable {
From source file org.rhwlab.BHCnotused.ThreadedAlgorithm.java
/** * * @author gevirl */ public class ThreadedAlgorithm implements Runnable { public ThreadedAlgorithm() {
From source file games.sudoku.task.BroadCreatorRunnable.java
/** * * @author nuno */ @Component public class BroadCreatorRunnable implements Runnable {
From source file extraction.com.clearforest.ExtractorRunnable.java
public class ExtractorRunnable implements Runnable { private static final int LIMIT_SIZE = 100000; private File file; private String outputFile; private String licenseID;
From source file com.apress.prospringintegration.concurrency.DemonstrationRunnable.java
public class DemonstrationRunnable implements Runnable { public void run() { try { Thread.sleep(1000); } catch (InterruptedException e) { System.out.println(ExceptionUtils.getFullStackTrace(e));