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

    public List<? extends BLOCKAnnotation> getBlocks()
    {
        return getAttributes("Blocks");
    }

    public void addBlocks(BLOCKAnnotation blocks)
    {
        putAttribute("Blocks", blocks);
    }

    public MobyString getAC()
    {
        return getAttribute("AC");
    }

    public void setAC(MobyString aC)
    {
        putAttribute("AC", aC);
    }

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

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

    public MobyString getCombined_Evalue()
    {
        return getAttribute("Combined_Evalue");
    }

    public void setCombined_Evalue(MobyString combined_Evalue)
    {
        putAttribute("Combined_Evalue", combined_Evalue);
    }

    public MobyInteger getNum_blocks()
    {
        return getAttribute("Num_blocks");
    }

    public void setNum_blocks(MobyInteger num_blocks)
    {
        putAttribute("Num_blocks", num_blocks);
    }

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

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

}
