/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package usda.weru.weps.location;

import usda.weru.weps.RunFileBean;

/**
 *
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public interface ElevationModeController{

	/**
	 *
	 * @param bean
	 */
	public void installModel (RunFileBean bean);

	/**
	 *
	 * @param bean
	 */
	public void uninstallModel (RunFileBean bean);

	/**
	 *
	 * @return
	 */
	public String getName();

	/**
	 *
	 * @return
	 */
	public String getDisplayName();
}
