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

    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);
    }

}
