Crop.java [src/java/util] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package util;

import org.codehaus.jettison.json.JSONException;
import org.codehaus.jettison.json.JSONObject;



/**
 *
 * @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
 */
public class Crop {
    protected String name;
    protected String id;
    protected double targetYield;
    
    public String getName(){
        return name;
    }
    
    public String getID(){
        return id;
    }
    
    public void setID(String key){
        id = key;
    }
    
    public double getYield(){
        return targetYield;
    }
    
    public void setYield(double yield){
        targetYield = yield;
    }   
  }