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

com.microsoft.schemas.office.x2006.digsig.impl.SignatureInfoV2DocumentImpl Maven / Gradle / Ivy

Go to download

This OSGi bundle wraps poi, poi-contrib, poi-ooxml, poi-ooxml-schemas and poi-scratchpad ${pkgVersion} jar files.

There is a newer version: 5.2.3_1
Show newest version
/*
 * An XML document type.
 * Localname: SignatureInfoV2
 * Namespace: http://schemas.microsoft.com/office/2006/digsig
 * Java type: com.microsoft.schemas.office.x2006.digsig.SignatureInfoV2Document
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.x2006.digsig.impl;
/**
 * A document containing one SignatureInfoV2(@http://schemas.microsoft.com/office/2006/digsig) element.
 *
 * This is a complex type.
 */
public class SignatureInfoV2DocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.x2006.digsig.SignatureInfoV2Document
{
    
    public SignatureInfoV2DocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName SIGNATUREINFOV2$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/office/2006/digsig", "SignatureInfoV2");
    
    
    /**
     * Gets the "SignatureInfoV2" element
     */
    public com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 getSignatureInfoV2()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 target = null;
            target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2)get_store().find_element_user(SIGNATUREINFOV2$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "SignatureInfoV2" element
     */
    public void setSignatureInfoV2(com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 signatureInfoV2)
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 target = null;
            target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2)get_store().find_element_user(SIGNATUREINFOV2$0, 0);
            if (target == null)
            {
                target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2)get_store().add_element_user(SIGNATUREINFOV2$0);
            }
            target.set(signatureInfoV2);
        }
    }
    
    /**
     * Appends and returns a new empty "SignatureInfoV2" element
     */
    public com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 addNewSignatureInfoV2()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2 target = null;
            target = (com.microsoft.schemas.office.x2006.digsig.CTSignatureInfoV2)get_store().add_element_user(SIGNATUREINFOV2$0);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy