All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fathzer.soft.ajlib.swing.worker.WorkInProgressPanel Maven / Gradle / Ivy

Go to download

A-Jlib is a simple java library with Swing widgets, utilities and other stuff

There is a newer version: 0.3.16
Show newest version
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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy