IscommentDocument.java 源代码


package schemasMicrosoftComOfficePowerpoint;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    CTEmpty addNewIscomment();

    CTEmpty getIscomment();

    void setIscomment(CTEmpty cTEmpty);
}