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

org.openxmlformats.schemas.drawingml.x2006.main.impl.CTGroupLockingImpl 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.3.0
Show newest version
/*
 * XML Type:  CT_GroupLocking
 * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main
 * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTGroupLocking
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.drawingml.x2006.main.impl;
/**
 * An XML CT_GroupLocking(@http://schemas.openxmlformats.org/drawingml/2006/main).
 *
 * This is a complex type.
 */
public class CTGroupLockingImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTGroupLocking {
    private static final long serialVersionUID = 1L;
    
    public CTGroupLockingImpl(org.apache.xmlbeans.SchemaType sType) {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName EXTLST$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/drawingml/2006/main", "extLst");
    private static final javax.xml.namespace.QName NOGRP$2 = 
        new javax.xml.namespace.QName("", "noGrp");
    private static final javax.xml.namespace.QName NOUNGRP$4 = 
        new javax.xml.namespace.QName("", "noUngrp");
    private static final javax.xml.namespace.QName NOSELECT$6 = 
        new javax.xml.namespace.QName("", "noSelect");
    private static final javax.xml.namespace.QName NOROT$8 = 
        new javax.xml.namespace.QName("", "noRot");
    private static final javax.xml.namespace.QName NOCHANGEASPECT$10 = 
        new javax.xml.namespace.QName("", "noChangeAspect");
    private static final javax.xml.namespace.QName NOMOVE$12 = 
        new javax.xml.namespace.QName("", "noMove");
    private static final javax.xml.namespace.QName NORESIZE$14 = 
        new javax.xml.namespace.QName("", "noResize");
    
    
    /**
     * Gets the "extLst" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList getExtLst() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList)get_store().find_element_user(EXTLST$0, 0);
            if (target == null) {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "extLst" element
     */
    public boolean isSetExtLst() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(EXTLST$0) != 0;
        }
    }
    
    /**
     * Sets the "extLst" element
     */
    public void setExtLst(org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList extLst) {
        generatedSetterHelperImpl(extLst, EXTLST$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "extLst" element
     */
    public org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList addNewExtLst() {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList target = null;
            target = (org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtensionList)get_store().add_element_user(EXTLST$0);
            return target;
        }
    }
    
    /**
     * Unsets the "extLst" element
     */
    public void unsetExtLst() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(EXTLST$0, 0);
        }
    }
    
    /**
     * Gets the "noGrp" attribute
     */
    public boolean getNoGrp() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOGRP$2);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NOGRP$2);
            }
            if (target == null) {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "noGrp" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetNoGrp() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOGRP$2);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(NOGRP$2);
            }
            return target;
        }
    }
    
    /**
     * True if has "noGrp" attribute
     */
    public boolean isSetNoGrp() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NOGRP$2) != null;
        }
    }
    
    /**
     * Sets the "noGrp" attribute
     */
    public void setNoGrp(boolean noGrp) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOGRP$2);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NOGRP$2);
            }
            target.setBooleanValue(noGrp);
        }
    }
    
    /**
     * Sets (as xml) the "noGrp" attribute
     */
    public void xsetNoGrp(org.apache.xmlbeans.XmlBoolean noGrp) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOGRP$2);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(NOGRP$2);
            }
            target.set(noGrp);
        }
    }
    
    /**
     * Unsets the "noGrp" attribute
     */
    public void unsetNoGrp() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NOGRP$2);
        }
    }
    
    /**
     * Gets the "noUngrp" attribute
     */
    public boolean getNoUngrp() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOUNGRP$4);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NOUNGRP$4);
            }
            if (target == null) {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "noUngrp" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetNoUngrp() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOUNGRP$4);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(NOUNGRP$4);
            }
            return target;
        }
    }
    
    /**
     * True if has "noUngrp" attribute
     */
    public boolean isSetNoUngrp() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NOUNGRP$4) != null;
        }
    }
    
    /**
     * Sets the "noUngrp" attribute
     */
    public void setNoUngrp(boolean noUngrp) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOUNGRP$4);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NOUNGRP$4);
            }
            target.setBooleanValue(noUngrp);
        }
    }
    
    /**
     * Sets (as xml) the "noUngrp" attribute
     */
    public void xsetNoUngrp(org.apache.xmlbeans.XmlBoolean noUngrp) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOUNGRP$4);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(NOUNGRP$4);
            }
            target.set(noUngrp);
        }
    }
    
    /**
     * Unsets the "noUngrp" attribute
     */
    public void unsetNoUngrp() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NOUNGRP$4);
        }
    }
    
    /**
     * Gets the "noSelect" attribute
     */
    public boolean getNoSelect() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOSELECT$6);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NOSELECT$6);
            }
            if (target == null) {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "noSelect" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetNoSelect() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOSELECT$6);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(NOSELECT$6);
            }
            return target;
        }
    }
    
    /**
     * True if has "noSelect" attribute
     */
    public boolean isSetNoSelect() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NOSELECT$6) != null;
        }
    }
    
    /**
     * Sets the "noSelect" attribute
     */
    public void setNoSelect(boolean noSelect) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOSELECT$6);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NOSELECT$6);
            }
            target.setBooleanValue(noSelect);
        }
    }
    
    /**
     * Sets (as xml) the "noSelect" attribute
     */
    public void xsetNoSelect(org.apache.xmlbeans.XmlBoolean noSelect) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOSELECT$6);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(NOSELECT$6);
            }
            target.set(noSelect);
        }
    }
    
    /**
     * Unsets the "noSelect" attribute
     */
    public void unsetNoSelect() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NOSELECT$6);
        }
    }
    
    /**
     * Gets the "noRot" attribute
     */
    public boolean getNoRot() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOROT$8);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NOROT$8);
            }
            if (target == null) {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "noRot" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetNoRot() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOROT$8);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(NOROT$8);
            }
            return target;
        }
    }
    
    /**
     * True if has "noRot" attribute
     */
    public boolean isSetNoRot() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NOROT$8) != null;
        }
    }
    
    /**
     * Sets the "noRot" attribute
     */
    public void setNoRot(boolean noRot) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOROT$8);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NOROT$8);
            }
            target.setBooleanValue(noRot);
        }
    }
    
    /**
     * Sets (as xml) the "noRot" attribute
     */
    public void xsetNoRot(org.apache.xmlbeans.XmlBoolean noRot) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOROT$8);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(NOROT$8);
            }
            target.set(noRot);
        }
    }
    
    /**
     * Unsets the "noRot" attribute
     */
    public void unsetNoRot() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NOROT$8);
        }
    }
    
    /**
     * Gets the "noChangeAspect" attribute
     */
    public boolean getNoChangeAspect() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOCHANGEASPECT$10);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NOCHANGEASPECT$10);
            }
            if (target == null) {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "noChangeAspect" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetNoChangeAspect() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOCHANGEASPECT$10);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(NOCHANGEASPECT$10);
            }
            return target;
        }
    }
    
    /**
     * True if has "noChangeAspect" attribute
     */
    public boolean isSetNoChangeAspect() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NOCHANGEASPECT$10) != null;
        }
    }
    
    /**
     * Sets the "noChangeAspect" attribute
     */
    public void setNoChangeAspect(boolean noChangeAspect) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOCHANGEASPECT$10);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NOCHANGEASPECT$10);
            }
            target.setBooleanValue(noChangeAspect);
        }
    }
    
    /**
     * Sets (as xml) the "noChangeAspect" attribute
     */
    public void xsetNoChangeAspect(org.apache.xmlbeans.XmlBoolean noChangeAspect) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOCHANGEASPECT$10);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(NOCHANGEASPECT$10);
            }
            target.set(noChangeAspect);
        }
    }
    
    /**
     * Unsets the "noChangeAspect" attribute
     */
    public void unsetNoChangeAspect() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NOCHANGEASPECT$10);
        }
    }
    
    /**
     * Gets the "noMove" attribute
     */
    public boolean getNoMove() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOMOVE$12);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NOMOVE$12);
            }
            if (target == null) {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "noMove" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetNoMove() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOMOVE$12);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(NOMOVE$12);
            }
            return target;
        }
    }
    
    /**
     * True if has "noMove" attribute
     */
    public boolean isSetNoMove() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NOMOVE$12) != null;
        }
    }
    
    /**
     * Sets the "noMove" attribute
     */
    public void setNoMove(boolean noMove) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NOMOVE$12);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NOMOVE$12);
            }
            target.setBooleanValue(noMove);
        }
    }
    
    /**
     * Sets (as xml) the "noMove" attribute
     */
    public void xsetNoMove(org.apache.xmlbeans.XmlBoolean noMove) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NOMOVE$12);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(NOMOVE$12);
            }
            target.set(noMove);
        }
    }
    
    /**
     * Unsets the "noMove" attribute
     */
    public void unsetNoMove() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NOMOVE$12);
        }
    }
    
    /**
     * Gets the "noResize" attribute
     */
    public boolean getNoResize() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NORESIZE$14);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NORESIZE$14);
            }
            if (target == null) {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "noResize" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetNoResize() {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NORESIZE$14);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(NORESIZE$14);
            }
            return target;
        }
    }
    
    /**
     * True if has "noResize" attribute
     */
    public boolean isSetNoResize() {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NORESIZE$14) != null;
        }
    }
    
    /**
     * Sets the "noResize" attribute
     */
    public void setNoResize(boolean noResize) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NORESIZE$14);
            if (target == null) {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NORESIZE$14);
            }
            target.setBooleanValue(noResize);
        }
    }
    
    /**
     * Sets (as xml) the "noResize" attribute
     */
    public void xsetNoResize(org.apache.xmlbeans.XmlBoolean noResize) {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(NORESIZE$14);
            if (target == null) {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(NORESIZE$14);
            }
            target.set(noResize);
        }
    }
    
    /**
     * Unsets the "noResize" attribute
     */
    public void unsetNoResize() {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NORESIZE$14);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy