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

    public MobyString getShortlabel()
    {
        return getAttribute("shortlabel");
    }

    public void setShortlabel(MobyString shortlabel)
    {
        putAttribute("shortlabel", shortlabel);
    }

    public MobyString getTerm()
    {
        return getAttribute("term");
    }

    public void setTerm(MobyString term)
    {
        putAttribute("term", term);
    }

    public MobyString getDefinition()
    {
        return getAttribute("definition");
    }

    public void setDefinition(MobyString definition)
    {
        putAttribute("definition", definition);
    }

}
