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

package usda.weru.util;

import javax.measure.Measurable;
import javax.measure.quantity.Length;
import usda.weru.tools.propertyboilerplate.PropertyBoilerPlate;

/**
 * Start of the cligen data bean.  Only supports the elevation at this point.
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public class CligenData extends CligenData_PropertyBoilerPlate{

    
    @PropertyBoilerPlate(valueClass=Measurable.class, valueGenericClasses={Length.class})
    public static final String PROP_ELEVATION = "elevation";



}


