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

package usda.weru.weps.location;

import java.util.EventObject;

/**
 *
 * @author Joseph Levin <joelevin@weru.ksu.edu>
 */
public class StationDataModelEvent extends EventObject{

    private final Type c_type;

    

    public StationDataModelEvent(Object source, Type type){
        super(source);
        c_type = type;
    }

   
    public Type getType(){
        return c_type;
    }



    public static enum Type{        
        StationDataChanged,
        GISDataChanged
    }
}
