MasterAttribute.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.XmlString;
import org.apache.xmlbeans.xml.stream.XMLInputStream;
import org.apache.xmlbeans.xml.stream.XMLStreamException;
import org.w3c.dom.Node;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    String getMaster();

    boolean isSetMaster();

    void setMaster(String str);

    void unsetMaster();

    XmlString xgetMaster();

    void xsetMaster(XmlString xmlString);
}