RightDocument.java 源代码


package schemasMicrosoftComOfficeOffice;

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 RightDocument extends XmlObject {
    public static final SchemaType type = (SchemaType) XmlBeans.typeSystemForClassLoader(RightDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sE130CAA0A01A7CDE5A2B4FEB8B311707").resolveHandle("right3401doctype");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    CTStrokeChild addNewRight();

    CTStrokeChild getRight();

    void setRight(CTStrokeChild cTStrokeChild);
}