001    /*
002     * XML Type:  tPart
003     * Namespace: http://schemas.xmlsoap.org/wsdl/
004     * Java type: org.apache.geronimo.xbeans.wsdl.TPart
005     *
006     * Automatically generated - do not modify.
007     */
008    package org.apache.geronimo.xbeans.wsdl;
009    
010    
011    /**
012     * An XML tPart(@http://schemas.xmlsoap.org/wsdl/).
013     *
014     * This is a complex type.
015     */
016    public interface TPart extends org.apache.geronimo.xbeans.wsdl.TExtensibleAttributesDocumented
017    {
018        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)schemaorg_apache_xmlbeans.system.sDD32E5A2898F33527024818ADE537D3B.TypeSystemHolder.typeSystem.resolveHandle("tpart7b08type");
019        
020        /**
021         * Gets the "name" attribute
022         */
023        java.lang.String getName();
024        
025        /**
026         * Gets (as xml) the "name" attribute
027         */
028        org.apache.xmlbeans.XmlNCName xgetName();
029        
030        /**
031         * Sets the "name" attribute
032         */
033        void setName(java.lang.String name);
034        
035        /**
036         * Sets (as xml) the "name" attribute
037         */
038        void xsetName(org.apache.xmlbeans.XmlNCName name);
039        
040        /**
041         * Gets the "element" attribute
042         */
043        javax.xml.namespace.QName getElement();
044        
045        /**
046         * Gets (as xml) the "element" attribute
047         */
048        org.apache.xmlbeans.XmlQName xgetElement();
049        
050        /**
051         * True if has "element" attribute
052         */
053        boolean isSetElement();
054        
055        /**
056         * Sets the "element" attribute
057         */
058        void setElement(javax.xml.namespace.QName element);
059        
060        /**
061         * Sets (as xml) the "element" attribute
062         */
063        void xsetElement(org.apache.xmlbeans.XmlQName element);
064        
065        /**
066         * Unsets the "element" attribute
067         */
068        void unsetElement();
069        
070        /**
071         * Gets the "type" attribute
072         */
073        javax.xml.namespace.QName getType();
074        
075        /**
076         * Gets (as xml) the "type" attribute
077         */
078        org.apache.xmlbeans.XmlQName xgetType();
079        
080        /**
081         * True if has "type" attribute
082         */
083        boolean isSetType();
084        
085        /**
086         * Sets the "type" attribute
087         */
088        void setType(javax.xml.namespace.QName type);
089        
090        /**
091         * Sets (as xml) the "type" attribute
092         */
093        void xsetType(org.apache.xmlbeans.XmlQName type);
094        
095        /**
096         * Unsets the "type" attribute
097         */
098        void unsetType();
099        
100        /**
101         * A factory class with static methods for creating instances
102         * of this type.
103         */
104        
105        public static final class Factory
106        {
107            public static org.apache.geronimo.xbeans.wsdl.TPart newInstance() {
108              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
109            
110            public static org.apache.geronimo.xbeans.wsdl.TPart newInstance(org.apache.xmlbeans.XmlOptions options) {
111              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
112            
113            /** @param xmlAsString the string value to parse */
114            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
115              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
116            
117            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
118              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
119            
120            /** @param file the file from which to load an xml document */
121            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
122              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
123            
124            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
125              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
126            
127            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
128              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
129            
130            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
131              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
132            
133            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
134              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
135            
136            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
137              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
138            
139            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
140              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
141            
142            public static org.apache.geronimo.xbeans.wsdl.TPart parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
143              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
144            
145            public static org.apache.geronimo.xbeans.wsdl.TPart parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
146              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
147            
148            public static org.apache.geronimo.xbeans.wsdl.TPart parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
149              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
150            
151            public static org.apache.geronimo.xbeans.wsdl.TPart parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
152              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
153            
154            public static org.apache.geronimo.xbeans.wsdl.TPart parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
155              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
156            
157            /** @deprecated {@link XMLInputStream} */
158            public static org.apache.geronimo.xbeans.wsdl.TPart parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
159              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
160            
161            /** @deprecated {@link XMLInputStream} */
162            public static org.apache.geronimo.xbeans.wsdl.TPart parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
163              return (org.apache.geronimo.xbeans.wsdl.TPart) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
164            
165            /** @deprecated {@link XMLInputStream} */
166            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 {
167              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
168            
169            /** @deprecated {@link XMLInputStream} */
170            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 {
171              return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
172            
173            private Factory() { } // No instance of this class allowed
174        }
175    }