ButtonAttribute.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;
import schemasMicrosoftComOfficeOffice.STTrueFalse;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    STTrueFalse.Enum getButton();

    boolean isSetButton();

    void setButton(STTrueFalse.Enum r1);

    void unsetButton();

    STTrueFalse xgetButton();

    void xsetButton(STTrueFalse sTTrueFalse);
}