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

    public MobyFloat getTm()
    {
        return getAttribute("tm");
    }

    public void setTm(MobyFloat tm)
    {
        putAttribute("tm", tm);
    }

    public MobyInteger getPosition()
    {
        return getAttribute("position");
    }

    public void setPosition(MobyInteger position)
    {
        putAttribute("position", position);
    }

}
