]> gerrit.simantics Code Review - simantics/interop.git/blob - org.simantics.xml.sax/src/org/w3/_2001/xmlschema/Any.java
XML Schema converter
[simantics/interop.git] / org.simantics.xml.sax / src / org / w3 / _2001 / xmlschema / Any.java
1 //\r
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 \r
3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> \r
4 // Any modifications to this file will be lost upon recompilation of the source schema. \r
5 // Generated on: 2015.06.17 at 02:58:58 PM EEST \r
6 //\r
7 \r
8 \r
9 package org.w3._2001.xmlschema;\r
10 \r
11 import java.math.BigInteger;\r
12 import javax.xml.bind.annotation.XmlAccessType;\r
13 import javax.xml.bind.annotation.XmlAccessorType;\r
14 import javax.xml.bind.annotation.XmlAttribute;\r
15 import javax.xml.bind.annotation.XmlRootElement;\r
16 import javax.xml.bind.annotation.XmlSchemaType;\r
17 import javax.xml.bind.annotation.XmlType;\r
18 \r
19 \r
20 /**\r
21  * <p>Java class for anonymous complex type.\r
22  * \r
23  * <p>The following schema fragment specifies the expected content contained within this class.\r
24  * \r
25  * <pre>\r
26  * &lt;complexType>\r
27  *   &lt;complexContent>\r
28  *     &lt;extension base="{http://www.w3.org/2001/XMLSchema}wildcard">\r
29  *       &lt;attGroup ref="{http://www.w3.org/2001/XMLSchema}occurs"/>\r
30  *       &lt;anyAttribute processContents='lax' namespace='##other'/>\r
31  *     &lt;/extension>\r
32  *   &lt;/complexContent>\r
33  * &lt;/complexType>\r
34  * </pre>\r
35  * \r
36  * \r
37  */\r
38 @XmlAccessorType(XmlAccessType.FIELD)\r
39 @XmlType(name = "")\r
40 @XmlRootElement(name = "any")\r
41 public class Any\r
42     extends Wildcard\r
43 {\r
44 \r
45     @XmlAttribute(name = "minOccurs")\r
46     @XmlSchemaType(name = "nonNegativeInteger")\r
47     protected BigInteger minOccurs;\r
48     @XmlAttribute(name = "maxOccurs")\r
49     @XmlSchemaType(name = "allNNI")\r
50     protected String maxOccurs;\r
51 \r
52     /**\r
53      * Gets the value of the minOccurs property.\r
54      * \r
55      * @return\r
56      *     possible object is\r
57      *     {@link BigInteger }\r
58      *     \r
59      */\r
60     public BigInteger getMinOccurs() {\r
61         if (minOccurs == null) {\r
62             return new BigInteger("1");\r
63         } else {\r
64             return minOccurs;\r
65         }\r
66     }\r
67 \r
68     /**\r
69      * Sets the value of the minOccurs property.\r
70      * \r
71      * @param value\r
72      *     allowed object is\r
73      *     {@link BigInteger }\r
74      *     \r
75      */\r
76     public void setMinOccurs(BigInteger value) {\r
77         this.minOccurs = value;\r
78     }\r
79 \r
80     /**\r
81      * Gets the value of the maxOccurs property.\r
82      * \r
83      * @return\r
84      *     possible object is\r
85      *     {@link String }\r
86      *     \r
87      */\r
88     public String getMaxOccurs() {\r
89         if (maxOccurs == null) {\r
90             return "1";\r
91         } else {\r
92             return maxOccurs;\r
93         }\r
94     }\r
95 \r
96     /**\r
97      * Sets the value of the maxOccurs property.\r
98      * \r
99      * @param value\r
100      *     allowed object is\r
101      *     {@link String }\r
102      *     \r
103      */\r
104     public void setMaxOccurs(String value) {\r
105         this.maxOccurs = value;\r
106     }\r
107 \r
108 }\r