List of usage examples for javax.swing SwingWorker subclass-usage
From source file com.codejumble.osbfa.attacker.CombinationFinder.java
/** * Class in charge of calculating the possible combinations * * @author alopcas */ public class CombinationFinder extends SwingWorker {
From source file tikatest.Investigation.java
/**
* This class is responsible for detecting files within a given directory and
* investigating them (as well as sub-directories).
* <p>Detected files are investigated using the Apache Tika and Commons Compress
* projects.
* <p><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">
From source file com.digitalgeneralists.assurance.ui.workers.MergeScanWorker.java
public class MergeScanWorker extends SwingWorker<Scan, Object> implements IProgressMonitor { private Logger logger = Logger.getLogger(MergeScanWorker.class); private Scan scan; private INotificationProvider notifier;
From source file com.digitalgeneralists.assurance.ui.workers.MergeScanResultWorker.java
public class MergeScanResultWorker extends SwingWorker<ComparisonResult, Object> implements IProgressMonitor { private Logger logger = Logger.getLogger(MergeScanResultWorker.class); private ComparisonResult result; private AssuranceMergeStrategy strategy;
From source file de.peterspan.csv2db.converter.AbstractConverter.java
public abstract class AbstractConverter extends SwingWorker<Void, Void> { private static final Log log = LogFactory.getLog(AbstractConverter.class); @Autowired protected ApplicationContext applicationContext;
From source file avoking.com.documentos.scheduler.startup.Main.java
/** * * @author ramms */ public class Main extends SwingWorker<String, String> { private static final Logger LOGGER = LoggerFactory.getLogger(Core.class);
From source file com.itemanalysis.jmetrik.file.JmetrikFileImporter.java
/**
* This class converts a delimited file into a *.jmetrik file. It scans the delimited data file
* to determine the variable names and type of data. It may also read an item scoring file to
* add attributes about item scoring. Finally, it also obtain attribute information from the
* import command such as the missing data codes.
*
From source file de.onyxbits.raccoon.appmgr.ExtractWorker.java
/**
* A worker for extracting APK files. It automatically translates binary XML.
*
* @author patrick
*
*/
From source file kevin.gvmsgarch.Worker.java
/** * * @author Kevin */ public class Worker extends SwingWorker {
From source file com.anrisoftware.prefdialog.miscswing.docks.dockingframes.layoutloader.LoadLayoutWorker.java
/**
* Loads and restores the layout from a stream in the AWT thread.
*
* @author Erwin Mueller, erwin.mueller@deventm.org
* @since 1.0
*/