<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">package usda.weru.weps.location.chooser;

import java.awt.Component;

/**
 *
 * @author mark
 */
public interface StationViewInterface {

    /**
     * Install the view on the for a StationChooser.  Now is the time to add
     * a PropertyChangeListener to the chooser.
     * @param chooser
     * @return Component used as the view.
     */
    public Component install(StationChooser chooser);

    /**
     * Clean up.  Now is the time to remove a PropertyChangeListener from the
     * chooser.
     * @param chooser
     */
    public void uninstall(StationChooser chooser);

}
</pre></body></html>