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

com.microsoft.schemas.office.office.impl.ShapelayoutDocumentImpl 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: shapelayout
 * Namespace: urn:schemas-microsoft-com:office:office
 * Java type: com.microsoft.schemas.office.office.ShapelayoutDocument
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.office.impl;
/**
 * A document containing one shapelayout(@urn:schemas-microsoft-com:office:office) element.
 *
 * This is a complex type.
 */
public class ShapelayoutDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.office.ShapelayoutDocument
{
    private static final long serialVersionUID = 1L;
    
    public ShapelayoutDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName SHAPELAYOUT$0 = 
        new javax.xml.namespace.QName("urn:schemas-microsoft-com:office:office", "shapelayout");
    
    
    /**
     * Gets the "shapelayout" element
     */
    public com.microsoft.schemas.office.office.CTShapeLayout getShapelayout()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.office.CTShapeLayout target = null;
            target = (com.microsoft.schemas.office.office.CTShapeLayout)get_store().find_element_user(SHAPELAYOUT$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "shapelayout" element
     */
    public void setShapelayout(com.microsoft.schemas.office.office.CTShapeLayout shapelayout)
    {
        generatedSetterHelperImpl(shapelayout, SHAPELAYOUT$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "shapelayout" element
     */
    public com.microsoft.schemas.office.office.CTShapeLayout addNewShapelayout()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.office.CTShapeLayout target = null;
            target = (com.microsoft.schemas.office.office.CTShapeLayout)get_store().add_element_user(SHAPELAYOUT$0);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy