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

com.microsoft.schemas.compatibility.impl.IgnorableAttributeImpl Maven / Gradle / Ivy

Go to download

XmlBeans generated from the Ecma supplied xsds (since POI 5.0.0, the 5th edition is used): https://www.ecma-international.org/publications/standards/Ecma-376.htm

There is a newer version: 5.2.5
Show newest version
/*
 * An XML attribute type.
 * Localname: Ignorable
 * Namespace: http://schemas.openxmlformats.org/markup-compatibility/2006
 * Java type: com.microsoft.schemas.compatibility.IgnorableAttribute
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.compatibility.impl;
/**
 * A document containing one Ignorable(@http://schemas.openxmlformats.org/markup-compatibility/2006) attribute.
 *
 * This is a complex type.
 */
public class IgnorableAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.compatibility.IgnorableAttribute {
    private static final long serialVersionUID = 1L;
    
    public IgnorableAttributeImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName IGNORABLE$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/markup-compatibility/2006", "Ignorable");
    
    
    /**
     * Gets the "Ignorable" attribute
     */
    public java.lang.String getIgnorable() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IGNORABLE$0);
            if (target == null) {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "Ignorable" attribute
     */
    public org.apache.xmlbeans.XmlString xgetIgnorable() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(IGNORABLE$0);
            return target;
        }
    }
    
    /**
     * True if has "Ignorable" attribute
     */
    public boolean isSetIgnorable() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(IGNORABLE$0) != null;
        }
    }
    
    /**
     * Sets the "Ignorable" attribute
     */
    public void setIgnorable(java.lang.String ignorable) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IGNORABLE$0);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(IGNORABLE$0);
            }
            target.setStringValue(ignorable);
        }
    }
    
    /**
     * Sets (as xml) the "Ignorable" attribute
     */
    public void xsetIgnorable(org.apache.xmlbeans.XmlString ignorable) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(IGNORABLE$0);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(IGNORABLE$0);
            }
            target.set(ignorable);
        }
    }
    
    /**
     * Unsets the "Ignorable" attribute
     */
    public void unsetIgnorable() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(IGNORABLE$0);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy