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

com.microsoft.schemas.office.visio.x2012.main.impl.DataConnectionsDocumentImpl 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: DataConnections
 * Namespace: http://schemas.microsoft.com/office/visio/2012/main
 * Java type: com.microsoft.schemas.office.visio.x2012.main.DataConnectionsDocument
 *
 * Automatically generated - do not modify.
 */
package com.microsoft.schemas.office.visio.x2012.main.impl;
/**
 * A document containing one DataConnections(@http://schemas.microsoft.com/office/visio/2012/main) element.
 *
 * This is a complex type.
 */
public class DataConnectionsDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements com.microsoft.schemas.office.visio.x2012.main.DataConnectionsDocument
{
    private static final long serialVersionUID = 1L;
    
    public DataConnectionsDocumentImpl(org.apache.xmlbeans.SchemaType sType)
    {
        super(sType);
    }
    
    private static final javax.xml.namespace.QName DATACONNECTIONS$0 = 
        new javax.xml.namespace.QName("http://schemas.microsoft.com/office/visio/2012/main", "DataConnections");
    
    
    /**
     * Gets the "DataConnections" element
     */
    public com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType getDataConnections()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType)get_store().find_element_user(DATACONNECTIONS$0, 0);
            if (target == null)
            {
                return null;
            }
            return target;
        }
    }
    
    /**
     * Sets the "DataConnections" element
     */
    public void setDataConnections(com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType dataConnections)
    {
        generatedSetterHelperImpl(dataConnections, DATACONNECTIONS$0, 0, org.apache.xmlbeans.impl.values.XmlObjectBase.KIND_SETTERHELPER_SINGLETON);
    }
    
    /**
     * Appends and returns a new empty "DataConnections" element
     */
    public com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType addNewDataConnections()
    {
        synchronized (monitor())
        {
            check_orphaned();
            com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType target = null;
            target = (com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType)get_store().add_element_user(DATACONNECTIONS$0);
            return target;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy