/* * XML Type: CT_OfficeArtExtension * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtension * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.drawingml.x2006.main.impl; /** * An XML CT_OfficeArtExtension(@http://schemas.openxmlformats.org/drawingml/2006/main). * * This is a complex type. */ public class CTOfficeArtExtensionImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTOfficeArtExtension { public CTOfficeArtExtensionImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName URI$0 = new javax.xml.namespace.QName("", "uri"); /** * Gets the "uri" attribute */ public java.lang.String getUri() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(URI$0); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "uri" attribute */ public org.apache.xmlbeans.XmlToken xgetUri() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlToken target = null; target = (org.apache.xmlbeans.XmlToken)get_store().find_attribute_user(URI$0); return target; } } /** * True if has "uri" attribute */ public boolean isSetUri() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(URI$0) != null; } } /** * Sets the "uri" attribute */ public void setUri(java.lang.String uri) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(URI$0); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(URI$0); } target.setStringValue(uri); } } /** * Sets (as xml) the "uri" attribute */ public void xsetUri(org.apache.xmlbeans.XmlToken uri) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlToken target = null; target = (org.apache.xmlbeans.XmlToken)get_store().find_attribute_user(URI$0); if (target == null) { target = (org.apache.xmlbeans.XmlToken)get_store().add_attribute_user(URI$0); } target.set(uri); } } /** * Unsets the "uri" attribute */ public void unsetUri() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(URI$0); } } }