Corrected some fields min. and max. values
This commit is contained in:
@@ -2,12 +2,14 @@
|
||||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
|
||||
// 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: 2015.11.09 at 05:09:39 AM WET
|
||||
// Generated on: 2015.11.09 at 05:42:56 AM WET
|
||||
//
|
||||
|
||||
|
||||
package generated;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
@@ -24,7 +26,7 @@ import javax.xml.bind.annotation.XmlType;
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Language">
|
||||
* <element name="Language" maxOccurs="unbounded">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="aar"/>
|
||||
@@ -531,30 +533,35 @@ import javax.xml.bind.annotation.XmlType;
|
||||
public class LanguagesType {
|
||||
|
||||
@XmlElement(name = "Language", required = true)
|
||||
protected String language;
|
||||
protected List<String> language;
|
||||
|
||||
/**
|
||||
* Gets the value of the language property.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLanguage() {
|
||||
return language;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the language property.
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the language property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getLanguage().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLanguage(String value) {
|
||||
this.language = value;
|
||||
public List<String> getLanguage() {
|
||||
if (language == null) {
|
||||
language = new ArrayList<String>();
|
||||
}
|
||||
return this.language;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user