
/*
 *
 * Autogenerated
 *
 */

package org.inb.biomoby.shared.ontology;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import org.inb.biomoby.shared.datatypes.*;
import org.inb.biomoby.shared.message.MobyObject;

  
@XmlRootElement(name="Parameter")
@XmlType(name="Parameter")
public class Parameter extends MobyObject implements Serializable
{

    public MobyString getName()
    {
        return getAttribute("Name");
    }

    public void setName(MobyString name)
    {
        putAttribute("Name", name);
    }

    public MobyString getType()
    {
        return getAttribute("Type");
    }

    public void setType(MobyString type)
    {
        putAttribute("Type", type);
    }

    public MobyString getValue()
    {
        return getAttribute("Value");
    }

    public void setValue(MobyString value)
    {
        putAttribute("Value", value);
    }

}
