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

    public List<? extends ArrayFloat> getArray()
    {
        return getAttributes("Array");
    }

    public void addArray(ArrayFloat array)
    {
        putAttribute("Array", array);
    }

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

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

}
