001 //
002 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs
003 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
004 // Any modifications to this file will be lost upon recompilation of the source schema.
005 // Generated on: 2010.09.16 at 02:31:28 PM GMT
006 //
007
008
009 package org.deegree.portal.cataloguemanager.model;
010
011 import javax.xml.bind.annotation.XmlAccessType;
012 import javax.xml.bind.annotation.XmlAccessorType;
013 import javax.xml.bind.annotation.XmlAttribute;
014 import javax.xml.bind.annotation.XmlRootElement;
015 import javax.xml.bind.annotation.XmlType;
016 import javax.xml.bind.annotation.XmlValue;
017
018
019 /**
020 * <p>Java class for anonymous complex type.
021 *
022 * <p>The following schema fragment specifies the expected content contained within this class.
023 *
024 * <pre>
025 * <complexType>
026 * <simpleContent>
027 * <extension base="<http://www.w3.org/2001/XMLSchema>string">
028 * <attribute name="codeListValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
029 * <attribute name="codeList" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
030 * </extension>
031 * </simpleContent>
032 * </complexType>
033 * </pre>
034 *
035 *
036 */
037 @XmlAccessorType(XmlAccessType.FIELD)
038 @XmlType(name = "", propOrder = {
039 "value"
040 })
041 @XmlRootElement(name = "LanguageCode")
042 public class LanguageCode {
043
044 @XmlValue
045 protected String value;
046 @XmlAttribute(required = true)
047 protected String codeListValue;
048 @XmlAttribute(required = true)
049 protected String codeList;
050
051 /**
052 * Gets the value of the value property.
053 *
054 * @return
055 * possible object is
056 * {@link String }
057 *
058 */
059 public String getValue() {
060 return value;
061 }
062
063 /**
064 * Sets the value of the value property.
065 *
066 * @param value
067 * allowed object is
068 * {@link String }
069 *
070 */
071 public void setValue(String value) {
072 this.value = value;
073 }
074
075 /**
076 * Gets the value of the codeListValue property.
077 *
078 * @return
079 * possible object is
080 * {@link String }
081 *
082 */
083 public String getCodeListValue() {
084 return codeListValue;
085 }
086
087 /**
088 * Sets the value of the codeListValue property.
089 *
090 * @param value
091 * allowed object is
092 * {@link String }
093 *
094 */
095 public void setCodeListValue(String value) {
096 this.codeListValue = value;
097 }
098
099 /**
100 * Gets the value of the codeList property.
101 *
102 * @return
103 * possible object is
104 * {@link String }
105 *
106 */
107 public String getCodeList() {
108 return codeList;
109 }
110
111 /**
112 * Sets the value of the codeList property.
113 *
114 * @param value
115 * allowed object is
116 * {@link String }
117 *
118 */
119 public void setCodeList(String value) {
120 this.codeList = value;
121 }
122
123 }