1344N/A/*
1344N/A * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
1344N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
1344N/A *
1344N/A * This code is free software; you can redistribute it and/or modify it
1344N/A * under the terms of the GNU General Public License version 2 only, as
1344N/A * published by the Free Software Foundation. Oracle designates this
1344N/A * particular file as subject to the "Classpath" exception as provided
1344N/A * by Oracle in the LICENSE file that accompanied this code.
1344N/A *
1344N/A * This code is distributed in the hope that it will be useful, but WITHOUT
1344N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1344N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
1344N/A * version 2 for more details (a copy is included in the LICENSE file that
1344N/A * accompanied this code).
1344N/A *
1344N/A * You should have received a copy of the GNU General Public License version
1344N/A * 2 along with this work; if not, write to the Free Software Foundation,
1344N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1344N/A *
1344N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
1344N/A * or visit www.oracle.com if you need additional information or have any
1344N/A * questions.
1344N/A */
3231N/A
6238N/Apackage com.sun.xml.internal.bind.v2.schemagen.xmlschema;
1344N/A
1344N/Aimport com.sun.xml.internal.txw2.TypedXmlWriter;
1344N/Aimport com.sun.xml.internal.txw2.annotation.XmlElement;
1344N/A
1344N/A/**
1344N/A * Used to write a content model.
1344N/A *
1344N/A * This mixes the particle and model group as the child of complex type.
6238N/A *
1344N/A * @author Kohsuke Kawaguchi
6238N/A */
1344N/Apublic interface ContentModelContainer extends TypedXmlWriter {
1344N/A @XmlElement
6238N/A LocalElement element();
1344N/A
1344N/A @XmlElement
1344N/A Any any();
1344N/A
1344N/A @XmlElement
1344N/A ExplicitGroup all();
1344N/A
1344N/A @XmlElement
6238N/A ExplicitGroup sequence();
6238N/A
6238N/A @XmlElement
1344N/A ExplicitGroup choice();
1344N/A}
1344N/A