
/*
 *
 * 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="ArrayXYData")
@XmlType(name="ArrayXYData")
public class ArrayXYData extends Array implements Serializable
{

    public List<? extends ElementXYData> getElements()
    {
        return getAttributes("elements");
    }

    public void addElements(ElementXYData elements)
    {
        putAttribute("elements", elements);
    }

    public MobyInteger getKey()
    {
        return getAttribute("Key");
    }

    public void setKey(MobyInteger key)
    {
        putAttribute("Key", key);
    }

    public MobyString getXtitle()
    {
        return getAttribute("xtitle");
    }

    public void setXtitle(MobyString xtitle)
    {
        putAttribute("xtitle", xtitle);
    }

    public MobyString getYtitle()
    {
        return getAttribute("ytitle");
    }

    public void setYtitle(MobyString ytitle)
    {
        putAttribute("ytitle", ytitle);
    }

    public MobyString getTitle()
    {
        return getAttribute("title");
    }

    public void setTitle(MobyString title)
    {
        putAttribute("title", title);
    }

    public MobyString getPlot_title()
    {
        return getAttribute("plot_title");
    }

    public void setPlot_title(MobyString plot_title)
    {
        putAttribute("plot_title", plot_title);
    }

}
