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

    public List<? extends ElementFloat> getElement()
    {
        return getAttributes("Element");
    }

    public void addElement(ElementFloat element)
    {
        putAttribute("Element", element);
    }

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

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

}
