TextpathDocument.java 源代码


package schemasMicrosoftComVml;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
import java.net.URL;
import javax.xml.stream.XMLStreamReader;
import org.apache.xmlbeans.SchemaType;
import org.apache.xmlbeans.XmlBeans;
import org.apache.xmlbeans.XmlException;
import org.apache.xmlbeans.XmlObject;
import org.apache.xmlbeans.XmlOptions;
import org.apache.xmlbeans.xml.stream.XMLInputStream;
import org.apache.xmlbeans.xml.stream.XMLStreamException;
import org.w3c.dom.Node;

public interface TextpathDocument extends XmlObject {
    public static final SchemaType type = (SchemaType) XmlBeans.typeSystemForClassLoader(TextpathDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("textpath0724doctype");

    public static final class Factory {
        private Factory() {
        }

        public static TextpathDocument newInstance() {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().newInstance(TextpathDocument.type, null);
        }

        public static TextpathDocument newInstance(XmlOptions xmlOptions) {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().newInstance(TextpathDocument.type, xmlOptions);
        }

        public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xMLInputStream) throws XmlException, XMLStreamException {
            return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream(xMLInputStream, TextpathDocument.type, null);
        }

        public static XMLInputStream newValidatingXMLInputStream(XMLInputStream xMLInputStream, XmlOptions xmlOptions) throws XmlException, XMLStreamException {
            return XmlBeans.getContextTypeLoader().newValidatingXMLInputStream(xMLInputStream, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(File file) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(file, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(File file, XmlOptions xmlOptions) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(file, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(InputStream inputStream) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(inputStream, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(InputStream inputStream, XmlOptions xmlOptions) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(inputStream, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(Reader reader) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(reader, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(Reader reader, XmlOptions xmlOptions) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(reader, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(String str) throws XmlException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(str, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(String str, XmlOptions xmlOptions) throws XmlException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(str, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(URL url) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(url, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(URL url, XmlOptions xmlOptions) throws XmlException, IOException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(url, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(XMLStreamReader xMLStreamReader) throws XmlException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(xMLStreamReader, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(XMLStreamReader xMLStreamReader, XmlOptions xmlOptions) throws XmlException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(xMLStreamReader, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(XMLInputStream xMLInputStream) throws XmlException, XMLStreamException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(xMLInputStream, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(XMLInputStream xMLInputStream, XmlOptions xmlOptions) throws XmlException, XMLStreamException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(xMLInputStream, TextpathDocument.type, xmlOptions);
        }

        public static TextpathDocument parse(Node node) throws XmlException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(node, TextpathDocument.type, (XmlOptions) null);
        }

        public static TextpathDocument parse(Node node, XmlOptions xmlOptions) throws XmlException {
            return (TextpathDocument) XmlBeans.getContextTypeLoader().parse(node, TextpathDocument.type, xmlOptions);
        }
    }

    CTTextPath addNewTextpath();

    CTTextPath getTextpath();

    void setTextpath(CTTextPath cTTextPath);
}