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

    public List<? extends InterProMotifAnnotation> getAnnotations()
    {
        return getAttributes("Annotations");
    }

    public void addAnnotations(InterProMotifAnnotation annotations)
    {
        putAttribute("Annotations", annotations);
    }

}
