001    /*
002     * XML Type:  tExtensibilityElement
003     * Namespace: http://schemas.xmlsoap.org/wsdl/
004     * Java type: org.apache.geronimo.xbeans.wsdl.TExtensibilityElement
005     *
006     * Automatically generated - do not modify.
007     */
008    package org.apache.geronimo.xbeans.wsdl;
009    
010    
011    /**
012     * An XML tExtensibilityElement(@http://schemas.xmlsoap.org/wsdl/).
013     *
014     * This is a complex type.
015     */
016    public interface TExtensibilityElement extends org.apache.xmlbeans.XmlObject
017    {
018        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schemaorg_apache_xmlbeans.system.sDD32E5A2898F33527024818ADE537D3B.TypeSystemHolder.typeSystem.resolveHandle("textensibilityelement6228type");
019        
020        /**
021         * Gets the "required" attribute
022         */
023        boolean getRequired();
024        
025        /**
026         * Gets (as xml) the "required" attribute
027         */
028        org.apache.xmlbeans.XmlBoolean xgetRequired();
029        
030        /**
031         * True if has "required" attribute
032         */
033        boolean isSetRequired();
034        
035        /**
036         * Sets the "required" attribute
037         */
038        void setRequired(boolean required);
039        
040        /**
041         * Sets (as xml) the "required" attribute
042         */
043        void xsetRequired(org.apache.xmlbeans.XmlBoolean required);
044        
045        /**
046         * Unsets the "required" attribute
047         */
048        void unsetRequired();
049        
050        /**
051         * A factory class with static methods for creating instances
052         * of this type.
053         */
054        
055        public static final class Factory
056        {
057            /** @deprecated No need to be able to create instances of abstract types */
058            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement newInstance() {
059              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
060            
061            /** @deprecated No need to be able to create instances of abstract types */
062            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement newInstance(org.apache.xmlbeans.XmlOptions options) {
063              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
064            
065            /** @param xmlAsString the string value to parse */
066            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
067              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
068            
069            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
070              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
071            
072            /** @param file the file from which to load an xml document */
073            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
074              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
075            
076            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
077              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
078            
079            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
080              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
081            
082            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
083              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
084            
085            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
086              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
087            
088            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
089              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
090            
091            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
092              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
093            
094            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
095              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
096            
097            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
098              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
099            
100            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
101              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
102            
103            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
104              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
105            
106            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
107              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
108            
109            /** @deprecated {@link XMLInputStream} */
110            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
111              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
112            
113            /** @deprecated {@link XMLInputStream} */
114            public static org.apache.geronimo.xbeans.wsdl.TExtensibilityElement parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
115              return (org.apache.geronimo.xbeans.wsdl.TExtensibilityElement) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
116            
117            /** @deprecated {@link XMLInputStream} */
118            public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
119              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
120            
121            /** @deprecated {@link XMLInputStream} */
122            public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
123              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
124            
125            private Factory() { } // No instance of this class allowed
126        }
127    }