
/*
 *
 * Autogenerated
 *
 */

package org.inb.biomoby.shared.ontology;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import java.util.List;
import org.inb.biomoby.shared.datatypes.*;
import org.inb.biomoby.shared.message.MobyObject;

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

    public List<? extends MobyString> getIdentifiabilityCriteria()
    {
        return getAttributes("identifiabilityCriteria");
    }

    public void addIdentifiabilityCriteria(MobyString identifiabilityCriteria)
    {
        putAttribute("identifiabilityCriteria", identifiabilityCriteria);
    }

    public List<? extends MobyString> getSensitivityParameters()
    {
        return getAttributes("sensitivityParameters");
    }

    public void addSensitivityParameters(MobyString sensitivityParameters)
    {
        putAttribute("sensitivityParameters", sensitivityParameters);
    }

    public List<? extends ByoDynTarget> getTarget()
    {
        return getAttributes("target");
    }

    public void addTarget(ByoDynTarget target)
    {
        putAttribute("target", target);
    }

    public List<? extends MobyString> getTargetSpecies()
    {
        return getAttributes("targetSpecies");
    }

    public void addTargetSpecies(MobyString targetSpecies)
    {
        putAttribute("targetSpecies", targetSpecies);
    }

    public MobyInteger getOEDResolution()
    {
        return getAttribute("OEDResolution");
    }

    public void setOEDResolution(MobyInteger oEDResolution)
    {
        putAttribute("OEDResolution", oEDResolution);
    }

}
