List of usage examples for java.lang Runnable interface-usage
From source file org.nuxeo.ecm.core.convert.cache.GCTask.java
/** * Task for GC dedicated Thread. * * @author tiry */ public class GCTask implements Runnable {
From source file edu.harvard.i2b2.crc.axis2.ExecutorRunnable.java
/** * Implements thread runnable interface, to do CRC Dblookup * processing using thread. */ public class ExecutorRunnable implements Runnable { private static Log log = LogFactory.getLog(ExecutorRunnable.class);
From source file p2p.project.p2pnode.Test.java
/** * * @author Marino */ public class Test implements Runnable {
From source file BouncingCircle.java
/** An applet that displays a simple animation */ public class BouncingCircle extends Applet implements Runnable { int x = 150, y = 50, r = 50; // Position and radius of the circle int dx = 11, dy = 7; // Trajectory of circle
From source file com.clank.launcher.install.ZipExtract.java
public class ZipExtract implements Runnable { @Getter private final ByteSource source; @Getter private final File destination;
From source file com.microsoft.tfs.client.common.framework.command.RunnableCommandAdapter.java
/**
* <p>
* This class adapts an instanceof {@link ICommand} to the {@link Runnable}
* interface.
* </p>
*
From source file Clock.java
public class Clock extends JButton implements Customizer, Externalizable, Runnable { protected PropertyChangeSupport propertyChangeSupport; protected boolean isDigital = false;
From source file com.skcraft.launcher.install.ZipExtract.java
public class ZipExtract implements Runnable { @Getter private final ByteSource source; @Getter private final File destination;
From source file us.calzoneman.BuildSession.BuildSessionSaver.java
/** * * @author Calvin * If a LICENSE file is enclosed, please refer to it for licensing information */ public class BuildSessionSaver implements Runnable {
From source file com.amazonaws.http.timertask.HttpRequestAbortTask.java
/** * Represents a runnable to abort its HttpRequest. */ public class HttpRequestAbortTask implements Runnable { private final HttpRequestBase httpRequest;