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

lrgs.rtstat.LrgsConfigPanel Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy