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 * <xs:complexType name="all"> 23 * <xs:annotation> 24 * <xs:documentation> 25 * Only elements allowed inside 26 * </xs:documentation> 27 * </xs:annotation> 28 * <xs:complexContent> 29 * <xs:restriction base="xs:explicitGroup"> 30 * <xs:group ref="xs:allModel"/> 31 * <xs:attribute name="minOccurs" use="optional" default="1"> 32 * <xs:simpleType> 33 * <xs:restriction base="xs:nonNegativeInteger"> 34 * <xs:enumeration value="0"/> 35 * <xs:enumeration value="1"/> 36 * </xs:restriction> 37 * </xs:simpleType> 38 * </xs:attribute> 39 * <xs:attribute name="maxOccurs" use="optional" default="1"> 40 * <xs:simpleType> 41 * <xs:restriction base="xs:allNNI"> 42 * <xs:enumeration value="1"/> 43 * </xs:restriction> 44 * </xs:simpleType> 45 * </xs:attribute> 46 * </xs:restriction> 47 * </xs:complexContent> 48 * </xs:complexType> 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