/* * XML Type: CT_Kinsoku * Namespace: http://schemas.openxmlformats.org/presentationml/2006/main * Java type: org.openxmlformats.schemas.presentationml.x2006.main.CTKinsoku * * Automatically generated - do not modify. */ package org.openxmlformats.schemas.presentationml.x2006.main.impl; /** * An XML CT_Kinsoku(@http://schemas.openxmlformats.org/presentationml/2006/main). * * This is a complex type. */ public class CTKinsokuImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.openxmlformats.schemas.presentationml.x2006.main.CTKinsoku { public CTKinsokuImpl(org.apache.xmlbeans.SchemaType sType) { super(sType); } private static final javax.xml.namespace.QName LANG$0 = new javax.xml.namespace.QName("", "lang"); private static final javax.xml.namespace.QName INVALSTCHARS$2 = new javax.xml.namespace.QName("", "invalStChars"); private static final javax.xml.namespace.QName INVALENDCHARS$4 = new javax.xml.namespace.QName("", "invalEndChars"); /** * Gets the "lang" attribute */ public java.lang.String getLang() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(LANG$0); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "lang" attribute */ public org.apache.xmlbeans.XmlString xgetLang() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(LANG$0); return target; } } /** * True if has "lang" attribute */ public boolean isSetLang() { synchronized (monitor()) { check_orphaned(); return get_store().find_attribute_user(LANG$0) != null; } } /** * Sets the "lang" attribute */ public void setLang(java.lang.String lang) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(LANG$0); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(LANG$0); } target.setStringValue(lang); } } /** * Sets (as xml) the "lang" attribute */ public void xsetLang(org.apache.xmlbeans.XmlString lang) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(LANG$0); if (target == null) { target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(LANG$0); } target.set(lang); } } /** * Unsets the "lang" attribute */ public void unsetLang() { synchronized (monitor()) { check_orphaned(); get_store().remove_attribute(LANG$0); } } /** * Gets the "invalStChars" attribute */ public java.lang.String getInvalStChars() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(INVALSTCHARS$2); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "invalStChars" attribute */ public org.apache.xmlbeans.XmlString xgetInvalStChars() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(INVALSTCHARS$2); return target; } } /** * Sets the "invalStChars" attribute */ public void setInvalStChars(java.lang.String invalStChars) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(INVALSTCHARS$2); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(INVALSTCHARS$2); } target.setStringValue(invalStChars); } } /** * Sets (as xml) the "invalStChars" attribute */ public void xsetInvalStChars(org.apache.xmlbeans.XmlString invalStChars) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(INVALSTCHARS$2); if (target == null) { target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(INVALSTCHARS$2); } target.set(invalStChars); } } /** * Gets the "invalEndChars" attribute */ public java.lang.String getInvalEndChars() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(INVALENDCHARS$4); if (target == null) { return null; } return target.getStringValue(); } } /** * Gets (as xml) the "invalEndChars" attribute */ public org.apache.xmlbeans.XmlString xgetInvalEndChars() { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(INVALENDCHARS$4); return target; } } /** * Sets the "invalEndChars" attribute */ public void setInvalEndChars(java.lang.String invalEndChars) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.SimpleValue target = null; target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(INVALENDCHARS$4); if (target == null) { target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(INVALENDCHARS$4); } target.setStringValue(invalEndChars); } } /** * Sets (as xml) the "invalEndChars" attribute */ public void xsetInvalEndChars(org.apache.xmlbeans.XmlString invalEndChars) { synchronized (monitor()) { check_orphaned(); org.apache.xmlbeans.XmlString target = null; target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(INVALENDCHARS$4); if (target == null) { target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(INVALENDCHARS$4); } target.set(invalEndChars); } } }