List of usage examples for javax.swing SwingWorker subclass-usage
From source file org.oyrm.kobo.postproc.KoboBatchTranscriber.java
/**
* The KoboBatchTranscriber reads XML files from the xml directory and transcribes
* the survey records contained there into csv files within the csv storage
* directory.
*
* The xml directory contains xml organized by survey instance. The csv storage directory
From source file org.oyrm.kobo.postproc.KoboSurveyDeviceSynchronizer.java
/**
* The KoboSurveyDeviceSynchronizer reads data from a specified directory and
* copies it onto a specified storage directory in order to maintain copies of
* the XML locally.
*
* The application of this class is intended to permit data to be harvested from
From source file org.tinymediamanager.core.UpdaterTask.java
/** * UpdaterTasks checks if there's a new update for TMM * * @author Myron BOyle */ public class UpdaterTask extends SwingWorker<Boolean, Void> {
From source file org.zaproxy.zap.extension.autoupdate.CheckForUpdates.java
public class CheckForUpdates extends SwingWorker<String, String> { //private static final String GF_ZAP_LATEST_OLD = "http://zaproxy.googlecode.com/svn/wiki/LatestVersion.wiki"; // The short URL means that the number of checkForUpdates can be tracked - see http://goo.gl/info/sIhXE private static final String GF_ZAP_LATEST_XML_SHORT = "http://goo.gl/sIhXE"; // The long URL is a failsafe ;)
From source file org.zaproxy.zap.extension.invoke.InvokeAppWorker.java
public class InvokeAppWorker extends SwingWorker<Void, Void> { private String command = null; private File workingDir = null; private String parameters = null; private boolean captureOutput = true;
From source file pl.otros.logview.pluginsimpl.OpenLogsSwingWorker.java
/** */ class OpenLogsSwingWorker extends SwingWorker<Void, String> { private static final Logger LOGGER = Logger.getLogger(OpenLogsSwingWorker.class.getName());
From source file savant.util.BackgroundWorker.java
/** * SwingWorker wrapper which provides hooks do the right thing in response to errors, cancellation, etc. * * @author tarkvara */ public abstract class BackgroundWorker<T> extends SwingWorker<T, Object> {
From source file uk.sipperfly.ui.BackgroundWorker.java
/**
* This class implements the background worker thread.
* Work happens on this thread so that the MainFraim GUI remains responsive.
*
* @author Nouman Tayyab
*/
From source file utils.MigrateAttachments.java
/** * * @author RO100051 */ public class MigrateAttachments extends SwingWorker<Integer, String> {
From source file varioustests.swingworkertests.SearchForWordWorker.java
/**
* Searches the text files under the given directory and counts the number of instances a given word is found
* in these file.
*
* @author Albert Attard
*/