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

package plots;

/**
 *
 * @author Adam
 */
public class PlotVal {
    
    private double _value;
    private String _type;
    private String _axis;

    public double getValue() {
        return _value;
    }

    public void setValue(float value) {
        this._value = value;
    }

    public String getType() {
        return _type;
    }

    public void setType(String type) {
        this._type = type;
    }

    public String getAxis() {
        return _axis;
    }

    public void setAxis(String axis) {
        this._axis = axis;
    }
    

}
