com.microsoft.schemas.office.visio.x2012.main.impl.DataConnectionsDocumentImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ooxml-visio-schemas Show documentation
Show all versions of ooxml-visio-schemas Show documentation
XMLBeans generated from Microsoft supplied XSD at https://msdn.microsoft.com/en-us/library/hh645006(v=office.12).aspx
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)
{
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)
{
target = (com.microsoft.schemas.office.visio.x2012.main.DataConnectionsType)get_store().add_element_user(DATACONNECTIONS$0);
}
target.set(dataConnections);
}
}
/**
* 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;
}
}
}