List of usage examples for javax.swing SwingWorker subclass-usage
From source file com.uksf.mf.core.utility.sqm.SqmFixer.java
/** * @author Tim */ public class SqmFixer extends SwingWorker<Void, Void> { private File activeFile;
From source file cz.muni.fi.mushroomhunter.restclient.LocationUpdateSwingWorker.java
/** * * @author Simon Hochla */ public class LocationUpdateSwingWorker extends SwingWorker<Integer, Void> {
From source file info.sugoiapps.xoserver.XOverServer.java
/** * * @author Daniel Munkacsi */ public class XOverServer extends SwingWorker<Void, String> {
From source file Main.java
class ReadFileWorker extends SwingWorker<List<String>, String> { @Override protected List<String> doInBackground() throws Exception { List<String> lines = new ArrayList<>(25); File textFile = new File("c:/Java_Dev/run.bat"); long byteLength = textFile.length();
From source file com.ecrimebureau.File.Hash.java
/** * * @author e-Crime */ public class Hash extends SwingWorker<String, Object> { JTextArea jTA;
From source file restApi.ApiCaller.java
/** * * @author sanju singh */ public class ApiCaller extends SwingWorker<Object, Void> {
From source file com.sec.ose.osi.thread.ui_related.UserCommandExecutionMonitorThread.java
/** * UserCommandExecutionMonitorThread * @author suhyun47.kim, hankido.lee * */ public class UserCommandExecutionMonitorThread extends SwingWorker<Object, Object> {
From source file cz.muni.fi.mushroomhunter.restclient.LocationDeleteSwingWorker.java
/** * * @author Simon Hochla */ public class LocationDeleteSwingWorker extends SwingWorker<Integer, Void> {
From source file cz.muni.fi.mushroomhunter.restclient.MushroomUpdateSwingWorker.java
/** * * @author Simon Hochla */ public class MushroomUpdateSwingWorker extends SwingWorker<Integer, Void> {
From source file controller.GetLyricsSwingWorker.java
public class GetLyricsSwingWorker extends SwingWorker<String, Object> { private int numLyricsChanged = 0; protected String doInBackground() throws Exception { numLyricsChanged = 0;