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

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

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

    public MobyString getDescription()
    {
        return getAttribute("Description");
    }

    public void setDescription(MobyString description)
    {
        putAttribute("Description", description);
    }

    public MobyString getGenus()
    {
        return getAttribute("Genus");
    }

    public void setGenus(MobyString genus)
    {
        putAttribute("Genus", genus);
    }

    public MobyString getSpecies()
    {
        return getAttribute("Species");
    }

    public void setSpecies(MobyString species)
    {
        putAttribute("Species", species);
    }

    public MobyInteger getStart()
    {
        return getAttribute("Start");
    }

    public void setStart(MobyInteger start)
    {
        putAttribute("Start", start);
    }

    public MobyInteger getEnd()
    {
        return getAttribute("End");
    }

    public void setEnd(MobyInteger end)
    {
        putAttribute("End", end);
    }

    public MobyString getStrand()
    {
        return getAttribute("Strand");
    }

    public void setStrand(MobyString strand)
    {
        putAttribute("Strand", strand);
    }

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

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

}
