com.publicobject.misc.Throbber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glazedlists_java15 Show documentation
Show all versions of glazedlists_java15 Show documentation
Event-driven lists for dynamically filtered and sorted tables
/* Glazed Lists (c) 2003-2006 */
/* http://publicobject.com/glazedlists/ publicobject.com,*/
/* O'Dell Engineering Ltd.*/
package com.publicobject.misc;
/**
* Simple animated monitor shows if work is taking place. This can be implemented
* in any GUI toolkit.
*
* @author Jesse Wilson
*/
public interface Throbber {
public void setOn();
public void setOff();
}