All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.schemas.compatibility.AlternateContentDocument Maven / Gradle / Ivy

Go to download

XmlBeans generated from the Ecma supplied xsds: http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%20Part%204%20(DOCX).zip

The newest version!
/*
 * An XML document type.
 * Localname: AlternateContent
 * Namespace: http://schemas.openxmlformats.org/markup-compatibility/2006
 * Java type: com.microsoft.schemas.compatibility.AlternateContentDocument
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.compatibility;


/**
 * A document containing one AlternateContent(@http://schemas.openxmlformats.org/markup-compatibility/2006) element.
 *
 * This is a complex type.
 */
public interface AlternateContentDocument extends org.apache.xmlbeans.XmlObject
{
    public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
        org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(AlternateContentDocument.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sD023D6490046BA0250A839A9AD24C443").resolveHandle("alternatecontentdd64doctype");
    
    /**
     * Gets the "AlternateContent" element
     */
    com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent getAlternateContent();
    
    /**
     * Sets the "AlternateContent" element
     */
    void setAlternateContent(com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent alternateContent);
    
    /**
     * Appends and returns a new empty "AlternateContent" element
     */
    com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent addNewAlternateContent();
    
    /**
     * An XML AlternateContent(@http://schemas.openxmlformats.org/markup-compatibility/2006).
     *
     * This is a complex type.
     */
    public interface AlternateContent extends org.apache.xmlbeans.XmlObject
    {
        public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
            org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(AlternateContent.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sD023D6490046BA0250A839A9AD24C443").resolveHandle("alternatecontenta8a9elemtype");
        
        /**
         * Gets a List of "Choice" elements
         */
        java.util.List getChoiceList();
        
        /**
         * Gets array of all "Choice" elements
             */
        @Deprecated
        com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice[] getChoiceArray();
        
        /**
         * Gets ith "Choice" element
         */
        com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice getChoiceArray(int i);
        
        /**
         * Returns number of "Choice" element
         */
        int sizeOfChoiceArray();
        
        /**
         * Sets array of all "Choice" element
         */
        void setChoiceArray(com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice[] choiceArray);
        
        /**
         * Sets ith "Choice" element
         */
        void setChoiceArray(int i, com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice choice);
        
        /**
         * Inserts and returns a new empty value (as xml) as the ith "Choice" element
         */
        com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice insertNewChoice(int i);
        
        /**
         * Appends and returns a new empty value (as xml) as the last "Choice" element
         */
        com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice addNewChoice();
        
        /**
         * Removes the ith "Choice" element
         */
        void removeChoice(int i);
        
        /**
         * Gets the "Fallback" element
         */
        com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback getFallback();
        
        /**
         * True if has "Fallback" element
         */
        boolean isSetFallback();
        
        /**
         * Sets the "Fallback" element
         */
        void setFallback(com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback fallback);
        
        /**
         * Appends and returns a new empty "Fallback" element
         */
        com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback addNewFallback();
        
        /**
         * Unsets the "Fallback" element
         */
        void unsetFallback();
        
        /**
         * Gets the "Ignorable" attribute
         */
        java.lang.String getIgnorable();
        
        /**
         * Gets (as xml) the "Ignorable" attribute
         */
        org.apache.xmlbeans.XmlString xgetIgnorable();
        
        /**
         * True if has "Ignorable" attribute
         */
        boolean isSetIgnorable();
        
        /**
         * Sets the "Ignorable" attribute
         */
        void setIgnorable(java.lang.String ignorable);
        
        /**
         * Sets (as xml) the "Ignorable" attribute
         */
        void xsetIgnorable(org.apache.xmlbeans.XmlString ignorable);
        
        /**
         * Unsets the "Ignorable" attribute
         */
        void unsetIgnorable();
        
        /**
         * Gets the "MustUnderstand" attribute
         */
        java.lang.String getMustUnderstand();
        
        /**
         * Gets (as xml) the "MustUnderstand" attribute
         */
        org.apache.xmlbeans.XmlString xgetMustUnderstand();
        
        /**
         * True if has "MustUnderstand" attribute
         */
        boolean isSetMustUnderstand();
        
        /**
         * Sets the "MustUnderstand" attribute
         */
        void setMustUnderstand(java.lang.String mustUnderstand);
        
        /**
         * Sets (as xml) the "MustUnderstand" attribute
         */
        void xsetMustUnderstand(org.apache.xmlbeans.XmlString mustUnderstand);
        
        /**
         * Unsets the "MustUnderstand" attribute
         */
        void unsetMustUnderstand();
        
        /**
         * Gets the "ProcessContent" attribute
         */
        java.lang.String getProcessContent();
        
        /**
         * Gets (as xml) the "ProcessContent" attribute
         */
        org.apache.xmlbeans.XmlString xgetProcessContent();
        
        /**
         * True if has "ProcessContent" attribute
         */
        boolean isSetProcessContent();
        
        /**
         * Sets the "ProcessContent" attribute
         */
        void setProcessContent(java.lang.String processContent);
        
        /**
         * Sets (as xml) the "ProcessContent" attribute
         */
        void xsetProcessContent(org.apache.xmlbeans.XmlString processContent);
        
        /**
         * Unsets the "ProcessContent" attribute
         */
        void unsetProcessContent();
        
        /**
         * An XML Choice(@http://schemas.openxmlformats.org/markup-compatibility/2006).
         *
         * This is a complex type.
         */
        public interface Choice extends org.apache.xmlbeans.XmlObject
        {
            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
                org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Choice.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sD023D6490046BA0250A839A9AD24C443").resolveHandle("choice69c6elemtype");
            
            /**
             * Gets the "Requires" attribute
             */
            java.lang.String getRequires();
            
            /**
             * Gets (as xml) the "Requires" attribute
             */
            org.apache.xmlbeans.XmlString xgetRequires();
            
            /**
             * Sets the "Requires" attribute
             */
            void setRequires(java.lang.String requires);
            
            /**
             * Sets (as xml) the "Requires" attribute
             */
            void xsetRequires(org.apache.xmlbeans.XmlString requires);
            
            /**
             * Gets the "Ignorable" attribute
             */
            java.lang.String getIgnorable();
            
            /**
             * Gets (as xml) the "Ignorable" attribute
             */
            org.apache.xmlbeans.XmlString xgetIgnorable();
            
            /**
             * True if has "Ignorable" attribute
             */
            boolean isSetIgnorable();
            
            /**
             * Sets the "Ignorable" attribute
             */
            void setIgnorable(java.lang.String ignorable);
            
            /**
             * Sets (as xml) the "Ignorable" attribute
             */
            void xsetIgnorable(org.apache.xmlbeans.XmlString ignorable);
            
            /**
             * Unsets the "Ignorable" attribute
             */
            void unsetIgnorable();
            
            /**
             * Gets the "MustUnderstand" attribute
             */
            java.lang.String getMustUnderstand();
            
            /**
             * Gets (as xml) the "MustUnderstand" attribute
             */
            org.apache.xmlbeans.XmlString xgetMustUnderstand();
            
            /**
             * True if has "MustUnderstand" attribute
             */
            boolean isSetMustUnderstand();
            
            /**
             * Sets the "MustUnderstand" attribute
             */
            void setMustUnderstand(java.lang.String mustUnderstand);
            
            /**
             * Sets (as xml) the "MustUnderstand" attribute
             */
            void xsetMustUnderstand(org.apache.xmlbeans.XmlString mustUnderstand);
            
            /**
             * Unsets the "MustUnderstand" attribute
             */
            void unsetMustUnderstand();
            
            /**
             * Gets the "ProcessContent" attribute
             */
            java.lang.String getProcessContent();
            
            /**
             * Gets (as xml) the "ProcessContent" attribute
             */
            org.apache.xmlbeans.XmlString xgetProcessContent();
            
            /**
             * True if has "ProcessContent" attribute
             */
            boolean isSetProcessContent();
            
            /**
             * Sets the "ProcessContent" attribute
             */
            void setProcessContent(java.lang.String processContent);
            
            /**
             * Sets (as xml) the "ProcessContent" attribute
             */
            void xsetProcessContent(org.apache.xmlbeans.XmlString processContent);
            
            /**
             * Unsets the "ProcessContent" attribute
             */
            void unsetProcessContent();
            
            /**
             * A factory class with static methods for creating instances
             * of this type.
             */
            
            public static final class Factory
            {

        private static java.lang.ref.SoftReference typeLoader;

        private static synchronized org.apache.xmlbeans.SchemaTypeLoader getTypeLoader() {
            org.apache.xmlbeans.SchemaTypeLoader stl = (typeLoader == null) ? null : typeLoader.get();
            if (stl == null) {
                stl = org.apache.xmlbeans.XmlBeans.typeLoaderForClassLoader(com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice.class.getClassLoader());
                typeLoader = new java.lang.ref.SoftReference(stl);
            }
            return stl;
        }

        public static com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice newInstance() {
                  return (com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice) getTypeLoader().newInstance( type, null ); }
                
                public static com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice newInstance(org.apache.xmlbeans.XmlOptions options) {
                  return (com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Choice) getTypeLoader().newInstance( type, options ); }
                
                private Factory() { } // No instance of this class allowed
            }
        }
        
        /**
         * An XML Fallback(@http://schemas.openxmlformats.org/markup-compatibility/2006).
         *
         * This is a complex type.
         */
        public interface Fallback extends org.apache.xmlbeans.XmlObject
        {
            public static final org.apache.xmlbeans.SchemaType type = (org.apache.xmlbeans.SchemaType)
                org.apache.xmlbeans.XmlBeans.typeSystemForClassLoader(Fallback.class.getClassLoader(), "schemaorg_apache_xmlbeans.system.sD023D6490046BA0250A839A9AD24C443").resolveHandle("fallback4cc7elemtype");
            
            /**
             * Gets the "Ignorable" attribute
             */
            java.lang.String getIgnorable();
            
            /**
             * Gets (as xml) the "Ignorable" attribute
             */
            org.apache.xmlbeans.XmlString xgetIgnorable();
            
            /**
             * True if has "Ignorable" attribute
             */
            boolean isSetIgnorable();
            
            /**
             * Sets the "Ignorable" attribute
             */
            void setIgnorable(java.lang.String ignorable);
            
            /**
             * Sets (as xml) the "Ignorable" attribute
             */
            void xsetIgnorable(org.apache.xmlbeans.XmlString ignorable);
            
            /**
             * Unsets the "Ignorable" attribute
             */
            void unsetIgnorable();
            
            /**
             * Gets the "MustUnderstand" attribute
             */
            java.lang.String getMustUnderstand();
            
            /**
             * Gets (as xml) the "MustUnderstand" attribute
             */
            org.apache.xmlbeans.XmlString xgetMustUnderstand();
            
            /**
             * True if has "MustUnderstand" attribute
             */
            boolean isSetMustUnderstand();
            
            /**
             * Sets the "MustUnderstand" attribute
             */
            void setMustUnderstand(java.lang.String mustUnderstand);
            
            /**
             * Sets (as xml) the "MustUnderstand" attribute
             */
            void xsetMustUnderstand(org.apache.xmlbeans.XmlString mustUnderstand);
            
            /**
             * Unsets the "MustUnderstand" attribute
             */
            void unsetMustUnderstand();
            
            /**
             * Gets the "ProcessContent" attribute
             */
            java.lang.String getProcessContent();
            
            /**
             * Gets (as xml) the "ProcessContent" attribute
             */
            org.apache.xmlbeans.XmlString xgetProcessContent();
            
            /**
             * True if has "ProcessContent" attribute
             */
            boolean isSetProcessContent();
            
            /**
             * Sets the "ProcessContent" attribute
             */
            void setProcessContent(java.lang.String processContent);
            
            /**
             * Sets (as xml) the "ProcessContent" attribute
             */
            void xsetProcessContent(org.apache.xmlbeans.XmlString processContent);
            
            /**
             * Unsets the "ProcessContent" attribute
             */
            void unsetProcessContent();
            
            /**
             * A factory class with static methods for creating instances
             * of this type.
             */
            
            public static final class Factory
            {

        private static java.lang.ref.SoftReference typeLoader;

        private static synchronized org.apache.xmlbeans.SchemaTypeLoader getTypeLoader() {
            org.apache.xmlbeans.SchemaTypeLoader stl = (typeLoader == null) ? null : typeLoader.get();
            if (stl == null) {
                stl = org.apache.xmlbeans.XmlBeans.typeLoaderForClassLoader(com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback.class.getClassLoader());
                typeLoader = new java.lang.ref.SoftReference(stl);
            }
            return stl;
        }

        public static com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback newInstance() {
                  return (com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback) getTypeLoader().newInstance( type, null ); }
                
                public static com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback newInstance(org.apache.xmlbeans.XmlOptions options) {
                  return (com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.Fallback) getTypeLoader().newInstance( type, options ); }
                
                private Factory() { } // No instance of this class allowed
            }
        }
        
        /**
         * A factory class with static methods for creating instances
         * of this type.
         */
        
        public static final class Factory
        {

        private static java.lang.ref.SoftReference typeLoader;

        private static synchronized org.apache.xmlbeans.SchemaTypeLoader getTypeLoader() {
            org.apache.xmlbeans.SchemaTypeLoader stl = (typeLoader == null) ? null : typeLoader.get();
            if (stl == null) {
                stl = org.apache.xmlbeans.XmlBeans.typeLoaderForClassLoader(com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent.class.getClassLoader());
                typeLoader = new java.lang.ref.SoftReference(stl);
            }
            return stl;
        }

        public static com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent newInstance() {
              return (com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent) getTypeLoader().newInstance( type, null ); }
            
            public static com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent newInstance(org.apache.xmlbeans.XmlOptions options) {
              return (com.microsoft.schemas.compatibility.AlternateContentDocument.AlternateContent) getTypeLoader().newInstance( type, options ); }
            
            private Factory() { } // No instance of this class allowed
        }
    }
    
    /**
     * A factory class with static methods for creating instances
     * of this type.
     */
    
    public static final class Factory
    {

        private static java.lang.ref.SoftReference typeLoader;

        private static synchronized org.apache.xmlbeans.SchemaTypeLoader getTypeLoader() {
            org.apache.xmlbeans.SchemaTypeLoader stl = (typeLoader == null) ? null : typeLoader.get();
            if (stl == null) {
                stl = org.apache.xmlbeans.XmlBeans.typeLoaderForClassLoader(com.microsoft.schemas.compatibility.AlternateContentDocument.class.getClassLoader());
                typeLoader = new java.lang.ref.SoftReference(stl);
            }
            return stl;
        }

        public static com.microsoft.schemas.compatibility.AlternateContentDocument newInstance() {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().newInstance( type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument newInstance(org.apache.xmlbeans.XmlOptions options) {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().newInstance( type, options ); }
        
        /** @param xmlAsString the string value to parse */
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.lang.String xmlAsString) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( xmlAsString, type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.lang.String xmlAsString, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( xmlAsString, type, options ); }
        
        /** @param file the file from which to load an xml document */
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.io.File file) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( file, type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.io.File file, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( file, type, options ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.net.URL u) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( u, type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.net.URL u, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( u, type, options ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.io.InputStream is) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( is, type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.io.InputStream is, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( is, type, options ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.io.Reader r) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( r, type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(java.io.Reader r, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, java.io.IOException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( r, type, options ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(javax.xml.stream.XMLStreamReader sr) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( sr, type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(javax.xml.stream.XMLStreamReader sr, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( sr, type, options ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(org.w3c.dom.Node node) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( node, type, null ); }
        
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(org.w3c.dom.Node node, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( node, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static com.microsoft.schemas.compatibility.AlternateContentDocument parse(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return (com.microsoft.schemas.compatibility.AlternateContentDocument) getTypeLoader().parse( xis, type, options ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return getTypeLoader().newValidatingXMLInputStream( xis, type, null ); }
        
        /** @deprecated {@link org.apache.xmlbeans.xml.stream.XMLInputStream} */
        @Deprecated
        public static org.apache.xmlbeans.xml.stream.XMLInputStream newValidatingXMLInputStream(org.apache.xmlbeans.xml.stream.XMLInputStream xis, org.apache.xmlbeans.XmlOptions options) throws org.apache.xmlbeans.XmlException, org.apache.xmlbeans.xml.stream.XMLStreamException {
          return getTypeLoader().newValidatingXMLInputStream( xis, type, options ); }
        
        private Factory() { } // No instance of this class allowed
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy