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

    public MobyString getValue()
    {
        return getAttribute("Value");
    }

    public void setValue(MobyString value)
    {
        putAttribute("Value", value);
    }

    public MobyInteger getKey()
    {
        return getAttribute("Key");
    }

    public void setKey(MobyInteger key)
    {
        putAttribute("Key", key);
    }

}
