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