/* * XML Type: CT_TextCharBullet * Namespace: http://schemas.openxmlformats.org/drawingml/2006/main * Java type: org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharBullet * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.drawingml.x2006.main.impl; /** * An XML CT_TextCharBullet(@http://schemas.openxmlformats.org/drawingml/2006/main). * * This is a complex type. */ public class CTTextCharBulletImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharBullet { public CTTextCharBulletImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName CHAR$0 = new javax.xml.namespace.QName("", "char"); /** * Gets the "char" attribute */ public java.lang.String getChar() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CHAR$0); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "char" attribute */ public org.apache.xmlbeans.XmlString xgetChar() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(CHAR$0); return target; } } /** * Sets the "char" attribute */ public void setChar(java.lang.String xchar) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(CHAR$0); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(CHAR$0); } target.setStringValue(xchar); } } /** * Sets (as xml) the "char" attribute */ public void xsetChar(org.apache.xmlbeans.XmlString xchar) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(CHAR$0); if (target == null) { target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(CHAR$0); } target.set(xchar); } } }