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

    public MobyInteger getRepetitions()
    {
        return getAttribute("Repetitions");
    }

    public void setRepetitions(MobyInteger repetitions)
    {
        putAttribute("Repetitions", repetitions);
    }

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

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

}
