// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2010.12.20 at 06:00:42 PM CET // package de.osmui.model.osm; import java.io.Serializable; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * Describes an enumeration value available for use in a parameter with the "enum" data type. * * * <p>Java class for tEnumValue complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tEnumValue"> * <complexContent> * <extension base="{http://uni-stuttgart.de/iev/osmosisTaskDescription}tHasDescription"> * <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="friendlyName" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tEnumValue") public class TEnumValue extends THasDescription implements Serializable { /** * */ private static final long serialVersionUID = 7262467961906498234L; @XmlAttribute(required = true) protected String value; @XmlAttribute protected String friendlyName; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the friendlyName property. * * @return * possible object is * {@link String } * */ public String getFriendlyName() { return friendlyName; } /** * Sets the value of the friendlyName property. * * @param value * allowed object is * {@link String } * */ public void setFriendlyName(String value) { this.friendlyName = value; } }