com.fathzer.soft.ajlib.swing.worker.WorkInProgressPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ajlib Show documentation
Show all versions of ajlib Show documentation
A-Jlib is a simple java library with Swing widgets, utilities
and other stuff
package com.fathzer.soft.ajlib.swing.worker;
import javax.swing.JPanel;
/** A panel reporting the progress of a background task.
* @author Jean-Marc Astesana
*
License: LGPL v3
* @see Worker
*/
@SuppressWarnings("serial")
public abstract class WorkInProgressPanel extends JPanel {
public abstract Worker, ?> getWorker();
public abstract void setSwingWorker(Worker, ?> worker);
}