/* * XML Type: CT_Connection * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTConnection * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.drawingml.x2006.main.impl; /** * An XML CT_Connection(@http://schemas.openxmlformats.org/drawingml/2006/main). * * This is a complex type. */ public class CTConnectionImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTConnection { public CTConnectionImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName ID$0 = new javax.xml.namespace.QName("", "id"); private static final javax.xml.namespace.QName IDX$2 = new javax.xml.namespace.QName("", "idx"); /** * Gets the "id" attribute */ public long getId() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$0); if (target == null) { return 0L; } return target.getLongValue(); } } /** * Gets (as xml) the "id" attribute */ public org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId xgetId() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId)get_store().find_attribute_user(ID$0); return target; } } /** * Sets the "id" attribute */ public void setId(long id) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$0); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ID$0); } target.setLongValue(id); } } /** * Sets (as xml) the "id" attribute */ public void xsetId(org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId id) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId)get_store().find_attribute_user(ID$0); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.STDrawingElementId)get_store().add_attribute_user(ID$0); } target.set(id); } } /** * Gets the "idx" attribute */ public long getIdx() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IDX$2); if (target == null) { return 0L; } return target.getLongValue(); } } /** * Gets (as xml) the "idx" attribute */ public org.apache.xmlbeans.XmlUnsignedInt xgetIdx() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlUnsignedInt target = null; target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(IDX$2); return target; } } /** * Sets the "idx" attribute */ public void setIdx(long idx) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IDX$2); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(IDX$2); } target.setLongValue(idx); } } /** * Sets (as xml) the "idx" attribute */ public void xsetIdx(org.apache.xmlbeans.XmlUnsignedInt idx) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlUnsignedInt target = null; target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().find_attribute_user(IDX$2); if (target == null) { target = (org.apache.xmlbeans.XmlUnsignedInt)get_store().add_attribute_user(IDX$2); } target.set(idx); } } }