lrgs.rtstat.LrgsConfigPanel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
/**
*
*/
package lrgs.rtstat;
import lrgs.lrgsmain.LrgsConfig;
/**
* Interface for extra custom config panels.
*/
public interface LrgsConfigPanel
{
/** The label to use in the tabbed pane. */
public String getLabel();
/** Fill controls with values from the passed configuration */
public void fillFields(LrgsConfig cfg);
/** @return true if anything was changed on this panel. */
public boolean hasChanged();
/** Save changes back to the config object. */
public void saveChanges();
}