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

com.microsoft.schemas.office.visio.x2012.main.impl.PageTypeImpl 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

There is a newer version: 1.4
Show newest version
/*
 * XML Type:  Page_Type
 * Namespace: http://schemas.microsoft.com/office/visio/2012/main
 * Java type: com.microsoft.schemas.office.visio.x2012.main.PageType
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.visio.x2012.main.impl;
/**
 * An XML Page_Type(@http://schemas.microsoft.com/office/visio/2012/main).
 *
 * This is a complex type.
 */
public class PageTypeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.visio.x2012.main.PageType
{
    
    public PageTypeImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName PAGESHEET$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/office/visio/2012/main", "PageSheet");
    private static final javax.xml.namespace.QName REL$2 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/office/visio/2012/main", "Rel");
    private static final javax.xml.namespace.QName ID$4 = 
        new javax.xml.namespace.QName("", "ID");
    private static final javax.xml.namespace.QName NAME$6 = 
        new javax.xml.namespace.QName("", "Name");
    private static final javax.xml.namespace.QName NAMEU$8 = 
        new javax.xml.namespace.QName("", "NameU");
    private static final javax.xml.namespace.QName ISCUSTOMNAME$10 = 
        new javax.xml.namespace.QName("", "IsCustomName");
    private static final javax.xml.namespace.QName ISCUSTOMNAMEU$12 = 
        new javax.xml.namespace.QName("", "IsCustomNameU");
    private static final javax.xml.namespace.QName BACKGROUND$14 = 
        new javax.xml.namespace.QName("", "Background");
    private static final javax.xml.namespace.QName BACKPAGE$16 = 
        new javax.xml.namespace.QName("", "BackPage");
    private static final javax.xml.namespace.QName VIEWSCALE$18 = 
        new javax.xml.namespace.QName("", "ViewScale");
    private static final javax.xml.namespace.QName VIEWCENTERX$20 = 
        new javax.xml.namespace.QName("", "ViewCenterX");
    private static final javax.xml.namespace.QName VIEWCENTERY$22 = 
        new javax.xml.namespace.QName("", "ViewCenterY");
    private static final javax.xml.namespace.QName REVIEWERID$24 = 
        new javax.xml.namespace.QName("", "ReviewerID");
    private static final javax.xml.namespace.QName ASSOCIATEDPAGE$26 = 
        new javax.xml.namespace.QName("", "AssociatedPage");
    
    
    /**
     * Gets the "PageSheet" element
     */
    public com.microsoft.schemas.office.visio.x2012.main.PageSheetType getPageSheet()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.PageSheetType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.PageSheetType)get_store().find_element_user(PAGESHEET$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * True if has "PageSheet" element
     */
    public boolean isSetPageSheet()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().count_elements(PAGESHEET$0) != 0;
        }
    }
    
    /**
     * Sets the "PageSheet" element
     */
    public void setPageSheet(com.microsoft.schemas.office.visio.x2012.main.PageSheetType pageSheet)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.PageSheetType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.PageSheetType)get_store().find_element_user(PAGESHEET$0, 0);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.visio.x2012.main.PageSheetType)get_store().add_element_user(PAGESHEET$0);
            }
            target.set(pageSheet);
        }
    }
    
    /**
     * Appends and returns a new empty "PageSheet" element
     */
    public com.microsoft.schemas.office.visio.x2012.main.PageSheetType addNewPageSheet()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.PageSheetType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.PageSheetType)get_store().add_element_user(PAGESHEET$0);
            return target;
        }
    }
    
    /**
     * Unsets the "PageSheet" element
     */
    public void unsetPageSheet()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_element(PAGESHEET$0, 0);
        }
    }
    
    /**
     * Gets the "Rel" element
     */
    public com.microsoft.schemas.office.visio.x2012.main.RelType getRel()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.RelType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.RelType)get_store().find_element_user(REL$2, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "Rel" element
     */
    public void setRel(com.microsoft.schemas.office.visio.x2012.main.RelType rel)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.RelType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.RelType)get_store().find_element_user(REL$2, 0);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.visio.x2012.main.RelType)get_store().add_element_user(REL$2);
            }
            target.set(rel);
        }
    }
    
    /**
     * Appends and returns a new empty "Rel" element
     */
    public com.microsoft.schemas.office.visio.x2012.main.RelType addNewRel()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.RelType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.RelType)get_store().add_element_user(REL$2);
            return target;
        }
    }
    
    /**
     * Gets the "ID" attribute
     */
    public long getID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$4);
            if (target == null)
            {
                return 0L;
            }
            return target.getLongValue();
        }
    }
    
    /**
     * Gets (as xml) the "ID" attribute
     */
    public org.apache.xmlbeans.XmlUnsignedInt xgetID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(ID$4);
            return target;
        }
    }
    
    /**
     * Sets the "ID" attribute
     */
    public void setID(long id)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$4);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ID$4);
            }
            target.setLongValue(id);
        }
    }
    
    /**
     * Sets (as xml) the "ID" attribute
     */
    public void xsetID(org.apache.xmlbeans.XmlUnsignedInt id)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(ID$4);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().add_attribute_user(ID$4);
            }
            target.set(id);
        }
    }
    
    /**
     * Gets the "Name" attribute
     */
    public java.lang.String getName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAME$6);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "Name" attribute
     */
    public org.apache.xmlbeans.XmlString xgetName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAME$6);
            return target;
        }
    }
    
    /**
     * True if has "Name" attribute
     */
    public boolean isSetName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NAME$6) != null;
        }
    }
    
    /**
     * Sets the "Name" attribute
     */
    public void setName(java.lang.String name)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAME$6);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NAME$6);
            }
            target.setStringValue(name);
        }
    }
    
    /**
     * Sets (as xml) the "Name" attribute
     */
    public void xsetName(org.apache.xmlbeans.XmlString name)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAME$6);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(NAME$6);
            }
            target.set(name);
        }
    }
    
    /**
     * Unsets the "Name" attribute
     */
    public void unsetName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NAME$6);
        }
    }
    
    /**
     * Gets the "NameU" attribute
     */
    public java.lang.String getNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAMEU$8);
            if (target == null)
            {
                return null;
            }
            return target.getStringValue();
        }
    }
    
    /**
     * Gets (as xml) the "NameU" attribute
     */
    public org.apache.xmlbeans.XmlString xgetNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAMEU$8);
            return target;
        }
    }
    
    /**
     * True if has "NameU" attribute
     */
    public boolean isSetNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(NAMEU$8) != null;
        }
    }
    
    /**
     * Sets the "NameU" attribute
     */
    public void setNameU(java.lang.String nameU)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAMEU$8);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NAMEU$8);
            }
            target.setStringValue(nameU);
        }
    }
    
    /**
     * Sets (as xml) the "NameU" attribute
     */
    public void xsetNameU(org.apache.xmlbeans.XmlString nameU)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlString target = null;
            target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAMEU$8);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(NAMEU$8);
            }
            target.set(nameU);
        }
    }
    
    /**
     * Unsets the "NameU" attribute
     */
    public void unsetNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(NAMEU$8);
        }
    }
    
    /**
     * Gets the "IsCustomName" attribute
     */
    public boolean getIsCustomName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ISCUSTOMNAME$10);
            if (target == null)
            {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "IsCustomName" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetIsCustomName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(ISCUSTOMNAME$10);
            return target;
        }
    }
    
    /**
     * True if has "IsCustomName" attribute
     */
    public boolean isSetIsCustomName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(ISCUSTOMNAME$10) != null;
        }
    }
    
    /**
     * Sets the "IsCustomName" attribute
     */
    public void setIsCustomName(boolean isCustomName)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ISCUSTOMNAME$10);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ISCUSTOMNAME$10);
            }
            target.setBooleanValue(isCustomName);
        }
    }
    
    /**
     * Sets (as xml) the "IsCustomName" attribute
     */
    public void xsetIsCustomName(org.apache.xmlbeans.XmlBoolean isCustomName)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(ISCUSTOMNAME$10);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(ISCUSTOMNAME$10);
            }
            target.set(isCustomName);
        }
    }
    
    /**
     * Unsets the "IsCustomName" attribute
     */
    public void unsetIsCustomName()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(ISCUSTOMNAME$10);
        }
    }
    
    /**
     * Gets the "IsCustomNameU" attribute
     */
    public boolean getIsCustomNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ISCUSTOMNAMEU$12);
            if (target == null)
            {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "IsCustomNameU" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetIsCustomNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(ISCUSTOMNAMEU$12);
            return target;
        }
    }
    
    /**
     * True if has "IsCustomNameU" attribute
     */
    public boolean isSetIsCustomNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(ISCUSTOMNAMEU$12) != null;
        }
    }
    
    /**
     * Sets the "IsCustomNameU" attribute
     */
    public void setIsCustomNameU(boolean isCustomNameU)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ISCUSTOMNAMEU$12);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ISCUSTOMNAMEU$12);
            }
            target.setBooleanValue(isCustomNameU);
        }
    }
    
    /**
     * Sets (as xml) the "IsCustomNameU" attribute
     */
    public void xsetIsCustomNameU(org.apache.xmlbeans.XmlBoolean isCustomNameU)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(ISCUSTOMNAMEU$12);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(ISCUSTOMNAMEU$12);
            }
            target.set(isCustomNameU);
        }
    }
    
    /**
     * Unsets the "IsCustomNameU" attribute
     */
    public void unsetIsCustomNameU()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(ISCUSTOMNAMEU$12);
        }
    }
    
    /**
     * Gets the "Background" attribute
     */
    public boolean getBackground()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BACKGROUND$14);
            if (target == null)
            {
                return false;
            }
            return target.getBooleanValue();
        }
    }
    
    /**
     * Gets (as xml) the "Background" attribute
     */
    public org.apache.xmlbeans.XmlBoolean xgetBackground()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(BACKGROUND$14);
            return target;
        }
    }
    
    /**
     * True if has "Background" attribute
     */
    public boolean isSetBackground()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(BACKGROUND$14) != null;
        }
    }
    
    /**
     * Sets the "Background" attribute
     */
    public void setBackground(boolean background)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BACKGROUND$14);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(BACKGROUND$14);
            }
            target.setBooleanValue(background);
        }
    }
    
    /**
     * Sets (as xml) the "Background" attribute
     */
    public void xsetBackground(org.apache.xmlbeans.XmlBoolean background)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlBoolean target = null;
            target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(BACKGROUND$14);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(BACKGROUND$14);
            }
            target.set(background);
        }
    }
    
    /**
     * Unsets the "Background" attribute
     */
    public void unsetBackground()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(BACKGROUND$14);
        }
    }
    
    /**
     * Gets the "BackPage" attribute
     */
    public long getBackPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BACKPAGE$16);
            if (target == null)
            {
                return 0L;
            }
            return target.getLongValue();
        }
    }
    
    /**
     * Gets (as xml) the "BackPage" attribute
     */
    public org.apache.xmlbeans.XmlUnsignedInt xgetBackPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(BACKPAGE$16);
            return target;
        }
    }
    
    /**
     * True if has "BackPage" attribute
     */
    public boolean isSetBackPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(BACKPAGE$16) != null;
        }
    }
    
    /**
     * Sets the "BackPage" attribute
     */
    public void setBackPage(long backPage)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(BACKPAGE$16);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(BACKPAGE$16);
            }
            target.setLongValue(backPage);
        }
    }
    
    /**
     * Sets (as xml) the "BackPage" attribute
     */
    public void xsetBackPage(org.apache.xmlbeans.XmlUnsignedInt backPage)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(BACKPAGE$16);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().add_attribute_user(BACKPAGE$16);
            }
            target.set(backPage);
        }
    }
    
    /**
     * Unsets the "BackPage" attribute
     */
    public void unsetBackPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(BACKPAGE$16);
        }
    }
    
    /**
     * Gets the "ViewScale" attribute
     */
    public double getViewScale()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(VIEWSCALE$18);
            if (target == null)
            {
                return 0.0;
            }
            return target.getDoubleValue();
        }
    }
    
    /**
     * Gets (as xml) the "ViewScale" attribute
     */
    public org.apache.xmlbeans.XmlDouble xgetViewScale()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlDouble target = null;
            target = (org.apache.xmlbeans.XmlDouble)get_store().find_attribute_user(VIEWSCALE$18);
            return target;
        }
    }
    
    /**
     * True if has "ViewScale" attribute
     */
    public boolean isSetViewScale()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(VIEWSCALE$18) != null;
        }
    }
    
    /**
     * Sets the "ViewScale" attribute
     */
    public void setViewScale(double viewScale)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(VIEWSCALE$18);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(VIEWSCALE$18);
            }
            target.setDoubleValue(viewScale);
        }
    }
    
    /**
     * Sets (as xml) the "ViewScale" attribute
     */
    public void xsetViewScale(org.apache.xmlbeans.XmlDouble viewScale)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlDouble target = null;
            target = (org.apache.xmlbeans.XmlDouble)get_store().find_attribute_user(VIEWSCALE$18);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlDouble)get_store().add_attribute_user(VIEWSCALE$18);
            }
            target.set(viewScale);
        }
    }
    
    /**
     * Unsets the "ViewScale" attribute
     */
    public void unsetViewScale()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(VIEWSCALE$18);
        }
    }
    
    /**
     * Gets the "ViewCenterX" attribute
     */
    public double getViewCenterX()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(VIEWCENTERX$20);
            if (target == null)
            {
                return 0.0;
            }
            return target.getDoubleValue();
        }
    }
    
    /**
     * Gets (as xml) the "ViewCenterX" attribute
     */
    public org.apache.xmlbeans.XmlDouble xgetViewCenterX()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlDouble target = null;
            target = (org.apache.xmlbeans.XmlDouble)get_store().find_attribute_user(VIEWCENTERX$20);
            return target;
        }
    }
    
    /**
     * True if has "ViewCenterX" attribute
     */
    public boolean isSetViewCenterX()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(VIEWCENTERX$20) != null;
        }
    }
    
    /**
     * Sets the "ViewCenterX" attribute
     */
    public void setViewCenterX(double viewCenterX)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(VIEWCENTERX$20);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(VIEWCENTERX$20);
            }
            target.setDoubleValue(viewCenterX);
        }
    }
    
    /**
     * Sets (as xml) the "ViewCenterX" attribute
     */
    public void xsetViewCenterX(org.apache.xmlbeans.XmlDouble viewCenterX)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlDouble target = null;
            target = (org.apache.xmlbeans.XmlDouble)get_store().find_attribute_user(VIEWCENTERX$20);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlDouble)get_store().add_attribute_user(VIEWCENTERX$20);
            }
            target.set(viewCenterX);
        }
    }
    
    /**
     * Unsets the "ViewCenterX" attribute
     */
    public void unsetViewCenterX()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(VIEWCENTERX$20);
        }
    }
    
    /**
     * Gets the "ViewCenterY" attribute
     */
    public double getViewCenterY()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(VIEWCENTERY$22);
            if (target == null)
            {
                return 0.0;
            }
            return target.getDoubleValue();
        }
    }
    
    /**
     * Gets (as xml) the "ViewCenterY" attribute
     */
    public org.apache.xmlbeans.XmlDouble xgetViewCenterY()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlDouble target = null;
            target = (org.apache.xmlbeans.XmlDouble)get_store().find_attribute_user(VIEWCENTERY$22);
            return target;
        }
    }
    
    /**
     * True if has "ViewCenterY" attribute
     */
    public boolean isSetViewCenterY()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(VIEWCENTERY$22) != null;
        }
    }
    
    /**
     * Sets the "ViewCenterY" attribute
     */
    public void setViewCenterY(double viewCenterY)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(VIEWCENTERY$22);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(VIEWCENTERY$22);
            }
            target.setDoubleValue(viewCenterY);
        }
    }
    
    /**
     * Sets (as xml) the "ViewCenterY" attribute
     */
    public void xsetViewCenterY(org.apache.xmlbeans.XmlDouble viewCenterY)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlDouble target = null;
            target = (org.apache.xmlbeans.XmlDouble)get_store().find_attribute_user(VIEWCENTERY$22);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlDouble)get_store().add_attribute_user(VIEWCENTERY$22);
            }
            target.set(viewCenterY);
        }
    }
    
    /**
     * Unsets the "ViewCenterY" attribute
     */
    public void unsetViewCenterY()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(VIEWCENTERY$22);
        }
    }
    
    /**
     * Gets the "ReviewerID" attribute
     */
    public long getReviewerID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(REVIEWERID$24);
            if (target == null)
            {
                return 0L;
            }
            return target.getLongValue();
        }
    }
    
    /**
     * Gets (as xml) the "ReviewerID" attribute
     */
    public org.apache.xmlbeans.XmlUnsignedInt xgetReviewerID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(REVIEWERID$24);
            return target;
        }
    }
    
    /**
     * True if has "ReviewerID" attribute
     */
    public boolean isSetReviewerID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(REVIEWERID$24) != null;
        }
    }
    
    /**
     * Sets the "ReviewerID" attribute
     */
    public void setReviewerID(long reviewerID)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(REVIEWERID$24);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(REVIEWERID$24);
            }
            target.setLongValue(reviewerID);
        }
    }
    
    /**
     * Sets (as xml) the "ReviewerID" attribute
     */
    public void xsetReviewerID(org.apache.xmlbeans.XmlUnsignedInt reviewerID)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(REVIEWERID$24);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().add_attribute_user(REVIEWERID$24);
            }
            target.set(reviewerID);
        }
    }
    
    /**
     * Unsets the "ReviewerID" attribute
     */
    public void unsetReviewerID()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(REVIEWERID$24);
        }
    }
    
    /**
     * Gets the "AssociatedPage" attribute
     */
    public long getAssociatedPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ASSOCIATEDPAGE$26);
            if (target == null)
            {
                return 0L;
            }
            return target.getLongValue();
        }
    }
    
    /**
     * Gets (as xml) the "AssociatedPage" attribute
     */
    public org.apache.xmlbeans.XmlUnsignedInt xgetAssociatedPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(ASSOCIATEDPAGE$26);
            return target;
        }
    }
    
    /**
     * True if has "AssociatedPage" attribute
     */
    public boolean isSetAssociatedPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            return get_store().find_attribute_user(ASSOCIATEDPAGE$26) != null;
        }
    }
    
    /**
     * Sets the "AssociatedPage" attribute
     */
    public void setAssociatedPage(long associatedPage)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.SimpleValue target = null;
            target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ASSOCIATEDPAGE$26);
            if (target == null)
            {
                target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ASSOCIATEDPAGE$26);
            }
            target.setLongValue(associatedPage);
        }
    }
    
    /**
     * Sets (as xml) the "AssociatedPage" attribute
     */
    public void xsetAssociatedPage(org.apache.xmlbeans.XmlUnsignedInt associatedPage)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.apache.xmlbeans.XmlUnsignedInt target = null;
            target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(ASSOCIATEDPAGE$26);
            if (target == null)
            {
                target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().add_attribute_user(ASSOCIATEDPAGE$26);
            }
            target.set(associatedPage);
        }
    }
    
    /**
     * Unsets the "AssociatedPage" attribute
     */
    public void unsetAssociatedPage()
    {
        synchronized (monitor())
        {
            check_orphaned();
            get_store().remove_attribute(ASSOCIATEDPAGE$26);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy