src/share/jaxws_classes/com/sun/xml/internal/bind/v2/schemagen/xmlschema/TopLevelElement.java

Print this page




  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.xml.internal.bind.v2.schemagen.xmlschema;
  27 
  28 import javax.xml.namespace.QName;
  29 import com.sun.xml.internal.txw2.TypedXmlWriter;
  30 import com.sun.xml.internal.txw2.annotation.XmlAttribute;
  31 import com.sun.xml.internal.txw2.annotation.XmlElement;
  32 





  33 @XmlElement("element")
  34 public interface TopLevelElement
  35     extends Element, TypedXmlWriter
  36 {
  37 
  38 
  39     @XmlAttribute("final")
  40     public TopLevelElement _final(String value);
  41 
  42     @XmlAttribute("final")
  43     public TopLevelElement _final(String[] value);
  44 
  45     @XmlAttribute("abstract")
  46     public TopLevelElement _abstract(boolean value);
  47 
  48     @XmlAttribute
  49     public TopLevelElement substitutionGroup(QName value);
  50 
  51     @XmlAttribute
  52     public TopLevelElement name(String value);
  53 
  54 }


  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package com.sun.xml.internal.bind.v2.schemagen.xmlschema;
  27 
  28 import javax.xml.namespace.QName;
  29 import com.sun.xml.internal.txw2.TypedXmlWriter;
  30 import com.sun.xml.internal.txw2.annotation.XmlAttribute;
  31 import com.sun.xml.internal.txw2.annotation.XmlElement;
  32 
  33 /**
  34  * <p><b>
  35  *     Auto-generated, do not edit.
  36  * </b></p>
  37  */
  38 @XmlElement("element")
  39 public interface TopLevelElement
  40     extends Element, TypedXmlWriter
  41 {
  42 
  43 
  44     @XmlAttribute("final")
  45     public TopLevelElement _final(String[] value);
  46 
  47     @XmlAttribute("final")
  48     public TopLevelElement _final(String value);
  49 
  50     @XmlAttribute("abstract")
  51     public TopLevelElement _abstract(boolean value);
  52 
  53     @XmlAttribute
  54     public TopLevelElement substitutionGroup(QName value);
  55 
  56     @XmlAttribute
  57     public TopLevelElement name(String value);
  58 
  59 }