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

    public MobyInteger getFrom()
    {
        return getAttribute("From");
    }

    public void setFrom(MobyInteger from)
    {
        putAttribute("From", from);
    }

    public MobyInteger getTo()
    {
        return getAttribute("To");
    }

    public void setTo(MobyInteger to)
    {
        putAttribute("To", to);
    }

    public MobyInteger getHitcount()
    {
        return getAttribute("Hitcount");
    }

    public void setHitcount(MobyInteger hitcount)
    {
        putAttribute("Hitcount", hitcount);
    }

}
