/* * XML Type: CT_OutlineViewSlideEntry * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main * Java type: org.openxmlformats.schemas.presentationml.x2006.main.CTOutlineViewSlideEntry * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.presentationml.x2006.main.impl; /** * An XML CT_OutlineViewSlideEntry(@http://schemas.openxmlformats.org/presentationml/2006/main). * * This is a complex type. */ public class CTOutlineViewSlideEntryImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.presentationml.x2006.main.CTOutlineViewSlideEntry { public CTOutlineViewSlideEntryImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName ID$0 = new javax.xml.namespace.QName("http://schemas.openxmlformats.org/officeDocument/2006/relationships", "id"); private static final javax.xml.namespace.QName COLLAPSE$2 = new javax.xml.namespace.QName("", "collapse"); /** * 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$0); 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$0); return target; } } /** * 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$0); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ID$0); } 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$0); if (target == null) { target = (org.openxmlformats.schemas.officeDocument.x2006.relationships.STRelationshipId)get_store().add_attribute_user(ID$0); } target.set(id); } } /** * Gets the "collapse" attribute */ public boolean getCollapse() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(COLLAPSE$2); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(COLLAPSE$2); } if (target == null) { return false; } return target.getBooleanValue(); } } /** * Gets (as xml) the "collapse" attribute */ public org.apache.xmlbeans.XmlBoolean xgetCollapse() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlBoolean target = null; target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(COLLAPSE$2); if (target == null) { target = (org.apache.xmlbeans.XmlBoolean)get_default_attribute_value(COLLAPSE$2); } return target; } } /** * True if has "collapse" attribute */ public boolean isSetCollapse() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(COLLAPSE$2) != null; } } /** * Sets the "collapse" attribute */ public void setCollapse(boolean collapse) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(COLLAPSE$2); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(COLLAPSE$2); } target.setBooleanValue(collapse); } } /** * Sets (as xml) the "collapse" attribute */ public void xsetCollapse(org.apache.xmlbeans.XmlBoolean collapse) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlBoolean target = null; target = (org.apache.xmlbeans.XmlBoolean)get_store().find_attribute_user(COLLAPSE$2); if (target == null) { target = (org.apache.xmlbeans.XmlBoolean)get_store().add_attribute_user(COLLAPSE$2); } target.set(collapse); } } /** * Unsets the "collapse" attribute */ public void unsetCollapse() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(COLLAPSE$2); } } }