List of usage examples for javax.swing SwingWorker subclass-usage
From source file com.github.cshubhamrao.MediaConverter.MainUI.java
class DisplayVersion extends SwingWorker<Void, String> {
File ffmpeg;
CommandLine cmd;
JTextArea outputArea;
From source file base.BasePlayer.FileRead.java
@SuppressWarnings("deprecation") public class FileRead extends SwingWorker<String, Object> { static boolean caller = false; Boolean readVCF = false, changeChrom = false, readBAM = false, searchInsSites = false, varcalc = false, getreads = false, readBED = false; File[] files;
From source file GUI.GraphicalInterface.java
class MyBlankWorker extends SwingWorker<Integer, String> { @Override protected Integer doInBackground() throws Exception { for (int i = 0; i < 1000000; i++) {
From source file oct.analysis.application.comp.EZWorker.java
/** * * @author Brandon M. Wilk {@literal <}wilkb777@gmail.com{@literal >} */ public class EZWorker extends SwingWorker<EZEdgeCoord, Point> {
From source file org.accretegb.modules.util.PopulateTableWorker.java
/** * @author nkumar * This class is used to background processing in tables which retrieve * data using a SQL query and populates itself. */ public abstract class PopulateTableWorker extends SwingWorker<DefaultTableModel, Object[]> {
From source file org.intermine.install.swing.CreateDatabaseWorker.java
/** * Swing worker for creating the Intermine Postgres databases. */ class CreateDatabaseWorker extends SwingWorker<Boolean, String> { /** * Name for the completed property change.
From source file org.norvelle.addressdiscoverer.gui.threading.DetermineGenderWorker.java
/**
* A SwingWorker to handle setting genders for all Individuals in the background,
* allowing the progress bar to be painted while the operation is ongoing.
*
* @author Erik Norvelle <erik.norvelle@cyberlogos.co>
*/
From source file org.norvelle.addressdiscoverer.gui.threading.ExportAllIndividualsWorker.java
/**
* A SwingWorker to handle setting genders for all Individuals in the background,
* allowing the progress bar to be painted while the operation is ongoing.
*
* @author Erik Norvelle <erik.norvelle@cyberlogos.co>
*/
From source file org.norvelle.addressdiscoverer.gui.threading.ExtractIndividualsFromFileWorker.java
/**
* A SwingWorker to handle background processing of the page classification
* process.
*
* @author Erik Norvelle <erik.norvelle@cyberlogos.co>
*/
From source file org.owasp.goatdroid.gui.emulator.EmulatorWorker.java
public class EmulatorWorker extends SwingWorker<String, EmulatorResult> {
String action;
String deviceName;
String deviceSerial;
String appPath;