/* * XML Type: CT_Control * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main * Java type: org.openxmlformats.schemas.presentationml.x2006.main.CTControl * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.presentationml.x2006.main.impl; /** * An XML CT_Control(@http://schemas.openxmlformats.org/presentationml/2006/main). * * This is a complex type. */ public class CTControlImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.presentationml.x2006.main.CTControl { public CTControlImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName EXTLST$0 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/presentationml/2006/main", "extLst"); private static final javax.xml.namespace.QName SPID$2 = new javax.xml.namespace.QName("", "spid"); private static final javax.xml.namespace.QName NAME$4 = new javax.xml.namespace.QName("", "name"); private static final javax.xml.namespace.QName SHOWASICON$6 = new javax.xml.namespace.QName("", "showAsIcon"); private static final javax.xml.namespace.QName ID$8 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/officeDocument/2006/relationships", "id"); private static final javax.xml.namespace.QName IMGW$10 = new javax.xml.namespace.QName("", "imgW"); private static final javax.xml.namespace.QName IMGH$12 = new javax.xml.namespace.QName("", "imgH"); /** * Gets the "extLst" element */ public org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList getExtLst() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList target = null; target = (org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList)get_store().find_element_user(EXTLST$0, 0); if (target == null) { return null; } return target; } } /** * True if has "extLst" element */ public boolean isSetExtLst() { synchronized (monitor()) { check_orphaned(); return get_store().count_elements(EXTLST$0) != 0; } } /** * Sets the "extLst" element */ public void setExtLst(org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList extLst) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList target = null; target = (org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList)get_store().find_element_user(EXTLST$0, 0); if (target == null) { target = (org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList)get_store().add_element_user(EXTLST$0); } target.set(extLst); } } /** * Appends and returns a new empty "extLst" element */ public org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList addNewExtLst() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList target = null; target = (org.openxmlformats.schemas.presentationml.x2006.main.CTExtensionList)get_store().add_element_user(EXTLST$0); return target; } } /** * Unsets the "extLst" element */ public void unsetExtLst() { synchronized (monitor()) { check_orphaned(); get_store().remove_element(EXTLST$0, 0); } } /** * Gets the "spid" attribute */ public java.lang.String getSpid() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SPID$2); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "spid" attribute */ public org.openxmlformats.schemas.drawingml.x2006.main.STShapeID xgetSpid() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STShapeID target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STShapeID)get_store().find_attribute_user(SPID$2); return target; } } /** * Sets the "spid" attribute */ public void setSpid(java.lang.String spid) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SPID$2); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SPID$2); } target.setStringValue(spid); } } /** * Sets (as xml) the "spid" attribute */ public void xsetSpid(org.openxmlformats.schemas.drawingml.x2006.main.STShapeID spid) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STShapeID target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STShapeID)get_store().find_attribute_user(SPID$2); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.STShapeID)get_store().add_attribute_user(SPID$2); } target.set(spid); } } /** * Gets the "name" attribute */ public java.lang.String getName() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAME$4); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(NAME$4); } if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "name" attribute */ public org.apache.xmlbeans.XmlString xgetName() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAME$4); if (target == null) { target = (org.apache.xmlbeans.XmlString)get_default_attribute_value(NAME$4); } return target; } } /** * True if has "name" attribute */ public boolean isSetName() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(NAME$4) != null; } } /** * Sets the "name" attribute */ public void setName(java.lang.String name) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(NAME$4); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(NAME$4); } target.setStringValue(name); } } /** * Sets (as xml) the "name" attribute */ public void xsetName(org.apache.xmlbeans.XmlString name) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(NAME$4); if (target == null) { target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(NAME$4); } target.set(name); } } /** * Unsets the "name" attribute */ public void unsetName() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(NAME$4); } } /** * Gets the "showAsIcon" attribute */ public boolean getShowAsIcon() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOWASICON$6); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(SHOWASICON$6); } if (target == null) { return false; } return target.getBooleanValue(); } } /** * Gets (as xml) the "showAsIcon" attribute */ public org.apache.xmlbeans.XmlBoolean xgetShowAsIcon() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlBoolean target = null; target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(SHOWASICON$6); if (target == null) { target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(SHOWASICON$6); } return target; } } /** * True if has "showAsIcon" attribute */ public boolean isSetShowAsIcon() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(SHOWASICON$6) != null; } } /** * Sets the "showAsIcon" attribute */ public void setShowAsIcon(boolean showAsIcon) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOWASICON$6); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SHOWASICON$6); } target.setBooleanValue(showAsIcon); } } /** * Sets (as xml) the "showAsIcon" attribute */ public void xsetShowAsIcon(org.apache.xmlbeans.XmlBoolean showAsIcon) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlBoolean target = null; target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(SHOWASICON$6); if (target == null) { target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(SHOWASICON$6); } target.set(showAsIcon); } } /** * Unsets the "showAsIcon" attribute */ public void unsetShowAsIcon() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(SHOWASICON$6); } } /** * Gets the "id" attribute */ public java.lang.String getId() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$8); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "id" attribute */ public org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId xgetId() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId target = null; target = (org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId)get_store().find_attribute_user(ID$8); return target; } } /** * True if has "id" attribute */ public boolean isSetId() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(ID$8) != null; } } /** * Sets the "id" attribute */ public void setId(java.lang.String id) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ID$8); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ID$8); } target.setStringValue(id); } } /** * Sets (as xml) the "id" attribute */ public void xsetId(org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId id) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId target = null; target = (org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId)get_store().find_attribute_user(ID$8); if (target == null) { target = (org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId)get_store().add_attribute_user(ID$8); } target.set(id); } } /** * Unsets the "id" attribute */ public void unsetId() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(ID$8); } } /** * Gets the "imgW" attribute */ public int getImgW() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IMGW$10); if (target == null) { return 0; } return target.getIntValue(); } } /** * Gets (as xml) the "imgW" attribute */ public org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 xgetImgW() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32)get_store().find_attribute_user(IMGW$10); return target; } } /** * True if has "imgW" attribute */ public boolean isSetImgW() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(IMGW$10) != null; } } /** * Sets the "imgW" attribute */ public void setImgW(int imgW) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IMGW$10); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(IMGW$10); } target.setIntValue(imgW); } } /** * Sets (as xml) the "imgW" attribute */ public void xsetImgW(org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 imgW) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32)get_store().find_attribute_user(IMGW$10); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32)get_store().add_attribute_user(IMGW$10); } target.set(imgW); } } /** * Unsets the "imgW" attribute */ public void unsetImgW() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(IMGW$10); } } /** * Gets the "imgH" attribute */ public int getImgH() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IMGH$12); if (target == null) { return 0; } return target.getIntValue(); } } /** * Gets (as xml) the "imgH" attribute */ public org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 xgetImgH() { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32)get_store().find_attribute_user(IMGH$12); return target; } } /** * True if has "imgH" attribute */ public boolean isSetImgH() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(IMGH$12) != null; } } /** * Sets the "imgH" attribute */ public void setImgH(int imgH) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(IMGH$12); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(IMGH$12); } target.setIntValue(imgH); } } /** * Sets (as xml) the "imgH" attribute */ public void xsetImgH(org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 imgH) { synchronized (monitor()) { check_orphaned(); org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32 target = null; target = (org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32)get_store().find_attribute_user(IMGH$12); if (target == null) { target = (org.openxmlformats.schemas.drawingml.x2006.main.STPositiveCoordinate32)get_store().add_attribute_user(IMGH$12); } target.set(imgH); } } /** * Unsets the "imgH" attribute */ public void unsetImgH() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(IMGH$12); } } }