blob: 0e76cb7f5180d0482bc8203abc8b16def09e3099 [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Denise Smith - 2.3
package org.eclipse.persistence.testing.jaxb.xmlschema.model;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlType;
/**
* restricted max/min
*
* <p>Java class for narrowMaxMin complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="narrowMaxMin">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}localElement">
* <sequence>
* <element ref="{http://www.w3.org/2001/XMLSchema}annotation" minOccurs="0"/>
* <choice minOccurs="0">
* <element name="simpleType" type="{http://www.w3.org/2001/XMLSchema}localSimpleType"/>
* <element name="complexType" type="{http://www.w3.org/2001/XMLSchema}localComplexType"/>
* </choice>
* <group ref="{http://www.w3.org/2001/XMLSchema}identityConstraint" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="minOccurs" default="1">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger">
* <enumeration value="0"/>
* <enumeration value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <attribute name="maxOccurs" default="1">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}allNNI">
* <enumeration value="0"/>
* <enumeration value="1"/>
* </restriction>
* </simpleType>
* </attribute>
* <anyAttribute processContents='lax' namespace='##other'/>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "narrowMaxMin")
public class NarrowMaxMin
extends LocalElement
{
}