Corrected some fields min. and max. values

This commit is contained in:
2015-11-09 05:43:32 +00:00
parent 9d5cdb2539
commit 1f0099a150
72 changed files with 314 additions and 483 deletions

View File

@@ -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;
@@ -25,7 +27,7 @@ import javax.xml.bind.annotation.XmlType;
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="Name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Version" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;element name="Version" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
@@ -44,7 +46,7 @@ public class RequiredOperatingSystemType {
@XmlElement(name = "Name", required = true)
protected String name;
@XmlElement(name = "Version", required = true)
protected String version;
protected List<String> version;
/**
* Gets the value of the name property.
@@ -73,25 +75,30 @@ public class RequiredOperatingSystemType {
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version 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 version property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getVersion().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 setVersion(String value) {
this.version = value;
public List<String> getVersion() {
if (version == null) {
version = new ArrayList<String>();
}
return this.version;
}
}