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

org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTrPrChangeImpl 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:  CT_TrPrChange
 * Namespace: http://schemas.openxmlformats.org/wordprocessingml/2006/main
 * Java type: org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrChange
 *
 * Automatically generated - do not modify.
 */
package org.openxmlformats.schemas.wordprocessingml.x2006.main.impl;
/**
 * An XML CT_TrPrChange(@http://schemas.openxmlformats.org/wordprocessingml/2006/main).
 *
 * This is a complex type.
 */
public class CTTrPrChangeImpl extends org.openxmlformats.schemas.wordprocessingml.x2006.main.impl.CTTrackChangeImpl implements org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrChange
{
    
    public CTTrPrChangeImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName TRPR$0 = 
        new javax.xml.namespace.QName("http://schemas.openxmlformats.org/wordprocessingml/2006/main", "trPr");
    
    
    /**
     * Gets the "trPr" element
     */
    public org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase getTrPr()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase target = null;
            target = (org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase)get_store().find_element_user(TRPR$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "trPr" element
     */
    public void setTrPr(org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase trPr)
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase target = null;
            target = (org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase)get_store().find_element_user(TRPR$0, 0);
            if (target == null)
            {
                target = (org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase)get_store().add_element_user(TRPR$0);
            }
            target.set(trPr);
        }
    }
    
    /**
     * Appends and returns a new empty "trPr" element
     */
    public org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase addNewTrPr()
    {
        synchronized (monitor())
        {
            check_orphaned();
            org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase target = null;
            target = (org.openxmlformats.schemas.wordprocessingml.x2006.main.CTTrPrBase)get_store().add_element_user(TRPR$0);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy