001 /*
002 * XML Type: tDocumented
003 * Namespace: http://schemas.xmlsoap.org/wsdl/
004 * Java type: org.apache.geronimo.xbeans.wsdl.TDocumented
005 *
006 * Automatically generated - do not modify.
007 */
008 package org.apache.geronimo.xbeans.wsdl;
009
010
011 /**
012 * An XML tDocumented(@http://schemas.xmlsoap.org/wsdl/).
013 *
014 * This is a complex type.
015 */
016 public interface TDocumented 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("tdocumented5521type");
019
020 /**
021 * Gets the "documentation" element
022 */
023 org.apache.geronimo.xbeans.wsdl.TDocumentation getDocumentation();
024
025 /**
026 * True if has "documentation" element
027 */
028 boolean isSetDocumentation();
029
030 /**
031 * Sets the "documentation" element
032 */
033 void setDocumentation(org.apache.geronimo.xbeans.wsdl.TDocumentation documentation);
034
035 /**
036 * Appends and returns a new empty "documentation" element
037 */
038 org.apache.geronimo.xbeans.wsdl.TDocumentation addNewDocumentation();
039
040 /**
041 * Unsets the "documentation" element
042 */
043 void unsetDocumentation();
044
045 /**
046 * A factory class with static methods for creating instances
047 * of this type.
048 */
049
050 public static final class Factory
051 {
052 public static org.apache.geronimo.xbeans.wsdl.TDocumented newInstance() {
053 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, null ); }
054
055 public static org.apache.geronimo.xbeans.wsdl.TDocumented newInstance(org.apache.xmlbeans.XmlOptions options) {
056 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newInstance( type, options ); }
057
058 /** @param xmlAsString the string value to parse */
059 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
060 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, null ); }
061
062 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
063 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xmlAsString, type, options ); }
064
065 /** @param file the file from which to load an xml document */
066 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
067 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, null ); }
068
069 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
070 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( file, type, options ); }
071
072 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
073 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, null ); }
074
075 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
076 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( u, type, options ); }
077
078 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
079 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, null ); }
080
081 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
082 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( is, type, options ); }
083
084 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
085 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, null ); }
086
087 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
088 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( r, type, options ); }
089
090 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
091 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, null ); }
092
093 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
094 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( sr, type, options ); }
095
096 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
097 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, null ); }
098
099 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
100 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( node, type, options ); }
101
102 /** @deprecated {@link XMLInputStream} */
103 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
104 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, null ); }
105
106 /** @deprecated {@link XMLInputStream} */
107 public static org.apache.geronimo.xbeans.wsdl.TDocumented parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
108 return (org.apache.geronimo.xbeans.wsdl.TDocumented) org.apache.xmlbeans.XmlBeans.getContextTypeLoader().parse( xis, type, options ); }
109
110 /** @deprecated {@link XMLInputStream} */
111 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 {
112 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
113
114 /** @deprecated {@link XMLInputStream} */
115 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 {
116 return org.apache.xmlbeans.XmlBeans.getContextTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
117
118 private Factory() { } // No instance of this class allowed
119 }
120 }