KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > ws > jaxme > xs > xml > XsTAll


1 /*
2  * Copyright 2003, 2004 The Apache Software Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15
16  */

17 package org.apache.ws.jaxme.xs.xml;
18
19
20 /** <p>Interface of the following type:
21  * <pre>
22  * &lt;xs:complexType name="all"&gt;
23  * &lt;xs:annotation&gt;
24  * &lt;xs:documentation&gt;
25  * Only elements allowed inside
26  * &lt;/xs:documentation&gt;
27  * &lt;/xs:annotation&gt;
28  * &lt;xs:complexContent&gt;
29  * &lt;xs:restriction base="xs:explicitGroup"&gt;
30  * &lt;xs:group ref="xs:allModel"/&gt;
31  * &lt;xs:attribute name="minOccurs" use="optional" default="1"&gt;
32  * &lt;xs:simpleType&gt;
33  * &lt;xs:restriction base="xs:nonNegativeInteger"&gt;
34  * &lt;xs:enumeration value="0"/&gt;
35  * &lt;xs:enumeration value="1"/&gt;
36  * &lt;/xs:restriction&gt;
37  * &lt;/xs:simpleType&gt;
38  * &lt;/xs:attribute&gt;
39  * &lt;xs:attribute name="maxOccurs" use="optional" default="1"&gt;
40  * &lt;xs:simpleType&gt;
41  * &lt;xs:restriction base="xs:allNNI"&gt;
42  * &lt;xs:enumeration value="1"/&gt;
43  * &lt;/xs:restriction&gt;
44  * &lt;/xs:simpleType&gt;
45  * &lt;/xs:attribute&gt;
46  * &lt;/xs:restriction&gt;
47  * &lt;/xs:complexContent&gt;
48  * &lt;/xs:complexType&gt;
49  * </pre></p>
50  *
51  * @author <a HREF="mailto:joe@ispsoft.de">Jochen Wiedmann</a>
52  */

53 public interface XsTAll extends XsTExplicitGroup, XsTTypeDefParticle {
54 }
55
Popular Tags