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)schemaorg_apache_xmlbeans.system.sDD32E5A2898F33527024818ADE537D3B.TypeSystemHolder.typeSystem.resolveHandle("tparambd24type"); 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 * True if has "name" attribute 032 */ 033 boolean isSetName(); 034 035 /** 036 * Sets the "name" attribute 037 */ 038 void setName(java.lang.String name); 039 040 /** 041 * Sets (as xml) the "name" attribute 042 */ 043 void xsetName(org.apache.xmlbeans.XmlNCName name); 044 045 /** 046 * Unsets the "name" attribute 047 */ 048 void unsetName(); 049 050 /** 051 * Gets the "message" attribute 052 */ 053 javax.xml.namespace.QName getMessage(); 054 055 /** 056 * Gets (as xml) the "message" attribute 057 */ 058 org.apache.xmlbeans.XmlQName xgetMessage(); 059 060 /** 061 * Sets the "message" attribute 062 */ 063 void setMessage(javax.xml.namespace.QName message); 064 065 /** 066 * Sets (as xml) the "message" attribute 067 */ 068 void xsetMessage(org.apache.xmlbeans.XmlQName message); 069 070 /** 071 * A factory class with static methods for creating instances 072 * of this type. 073 */ 074 075 public static final class Factory 076 { 077 public static org.apache.geronimo.xbeans.wsdl.TParam newInstance() { 078 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); } 079 080 public static org.apache.geronimo.xbeans.wsdl.TParam newInstance(org.apache.xmlbeans.XmlOptions options) { 081 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); } 082 083 /** @param xmlAsString the string value to parse */ 084 public static org.apache.geronimo.xbeans.wsdl.TParam parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException { 085 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); } 086 087 public static org.apache.geronimo.xbeans.wsdl.TParam parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 088 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); } 089 090 /** @param file the file from which to load an xml document */ 091 public static org.apache.geronimo.xbeans.wsdl.TParam parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException { 092 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); } 093 094 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 { 095 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); } 096 097 public static org.apache.geronimo.xbeans.wsdl.TParam parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException { 098 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); } 099 100 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 { 101 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); } 102 103 public static org.apache.geronimo.xbeans.wsdl.TParam parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException { 104 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); } 105 106 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 { 107 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); } 108 109 public static org.apache.geronimo.xbeans.wsdl.TParam parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException { 110 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); } 111 112 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 { 113 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); } 114 115 public static org.apache.geronimo.xbeans.wsdl.TParam parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException { 116 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); } 117 118 public static org.apache.geronimo.xbeans.wsdl.TParam parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 119 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); } 120 121 public static org.apache.geronimo.xbeans.wsdl.TParam parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException { 122 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); } 123 124 public static org.apache.geronimo.xbeans.wsdl.TParam parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException { 125 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); } 126 127 /** @deprecated {@link XMLInputStream} */ 128 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 { 129 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); } 130 131 /** @deprecated {@link XMLInputStream} */ 132 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 { 133 return (org.apache.geronimo.xbeans.wsdl.TParam) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); } 134 135 /** @deprecated {@link XMLInputStream} */ 136 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 { 137 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); } 138 139 /** @deprecated {@link XMLInputStream} */ 140 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 { 141 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); } 142 143 private Factory() { } // No instance of this class allowed 144 } 145 }