
/*
 *
 * 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="CommentedAASubsequence")
@XmlType(name="CommentedAASubsequence")
public class CommentedAASubsequence extends CommentedAASequence 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);
    }

}
