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

decodes.tsdb.groupedit.TsListControllers 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 decodes.tsdb.groupedit;

/**
* Panels that use the TsListControlsPanel of buttons must provide a controller
* that implements this interface.
*/
public interface TsListControllers
{
        /** @return the type of entity being listed. */
        public String getEntityType();

        /**
          Called when user presses the 'Open' Button.
        */
        public void openPressed();

        /**
          Called when user presses the 'New' Button.
        */
        public void newPressed();

        /**
          Called when user presses the 'Delete' Button.
        */
        public void deletePressed();

        /**
          Called when user presses the 'refresh' Button.
        */
        public void refresh();

        public void plot();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy