Example usage for javax.swing SwingWorker subclass-usage

List of usage examples for javax.swing SwingWorker subclass-usage

Introduction

In this page you can find the example usage for javax.swing SwingWorker subclass-usage.

Usage

From source file com.sec.ose.osi.thread.job.analysis.AnalyzeExecutionThread.java

/**
 * AnalyzeExecutionThread
 * @author sjh.yoo, hankido.lee, suhyun47.kim
 * 
 */
public class AnalyzeExecutionThread extends SwingWorker<String, String> {

From source file com.itemanalysis.jmetrik.stats.descriptives.DescriptiveAnalysis.java

public class DescriptiveAnalysis extends SwingWorker<String, String> {

    private DescriptiveCommand command = null;

    private DatabaseAccessObject dao = null;

From source file com.itemanalysis.jmetrik.stats.frequency.FrequencyAnalysis.java

public class FrequencyAnalysis extends SwingWorker<String, String> {

    private FrequencyCommand command = null;

    private JmetrikTextFile textFile = null;

From source file com.itemanalysis.jmetrik.graph.density.DensityAnalysis.java

public class DensityAnalysis extends SwingWorker<DensityPanel, Void> {

    private DensityCommand command = null;
    private DensityPanel densityPanel = null;
    private Throwable theException = null;
    private Connection conn = null;

From source file org.datacleaner.actions.DownloadFilesActionListener.java

/**
 * ActionListener and SwingWorker implementation for handling download of a
 * file. The progress will be displayed in a new window.
 */
public class DownloadFilesActionListener extends SwingWorker<FileObject[], Task> implements ActionListener {

From source file org.eobjects.datacleaner.actions.DownloadFilesActionListener.java

 * ActionListener and SwingWorker implementation for handling download of a
 * file. The progress will be displayed in a new window.
 */
public class DownloadFilesActionListener extends SwingWorker<FileObject[], Task> implements ActionListener {

    private static final Logger logger = LoggerFactory.getLogger(DownloadFilesActionListener.class);

From source file org.datacleaner.actions.PublishFileToMonitorActionListener.java

/**
 * Abstract {@link SwingWorker} and {@link ActionListener} for publishing a file
 * to the DataCleaner monitor webapp.
 */
public abstract class PublishFileToMonitorActionListener extends SwingWorker<Map<?, ?>, Task>
        implements ActionListener {

From source file com.itemanalysis.jmetrik.stats.itemanalysis.ItemAnalysis.java

public class ItemAnalysis extends SwingWorker<String, Void> {

    private ItemAnalysisCommand command = null;
    private TreeMap<Integer, ClassicalItem> item = null;
    private JmetrikTextFile textFile = null;
    private Throwable theException = null;

From source file eu.dety.burp.joseph.attacks.bleichenbacher_pkcs1.BleichenbacherPkcs1DecryptionAttackExecutor.java

/**
 * Decryption Attack Executor
 * <p>
 * Performs the actual request and updates related widgets
 */
class BleichenbacherPkcs1DecryptionAttackExecutor extends SwingWorker<Integer, BigInteger> {

From source file org.eobjects.datacleaner.actions.PublishFileToMonitorActionListener.java

/**
 * Abstract {@link SwingWorker} and {@link ActionListener} for publishing a file
 * to the DataCleaner monitor webapp.
 */
public abstract class PublishFileToMonitorActionListener extends SwingWorker<Map<?, ?>, Task>
        implements ActionListener {