schemasMicrosoftComOfficeOffice.impl.SpidAttributeImpl Maven / Gradle / Ivy
Go to download
XmlBeans generated from the Ecma supplied xsds:
http://www.ecma-international.org/publications/files/ECMA-ST/Office%20Open%20XML%20Part%204%20(DOCX).zip
/*
* An XML attribute type.
* Localname: spid
* Namespace: urn:schemas-microsoft-com:office:office
* Java type: schemasMicrosoftComOfficeOffice.SpidAttribute
*
* Automatically generated - do not modify.
*/
package schemasMicrosoftComOfficeOffice.impl;
/**
* A document containing one spid(@urn:schemas-microsoft-com:office:office) attribute.
*
* This is a complex type.
*/
public class SpidAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements schemasMicrosoftComOfficeOffice.SpidAttribute
{
public SpidAttributeImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName SPID$0 =
new javax.xml.namespace.QName("urn:schemas-microsoft-com:office:office", "spid");
/**
* 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$0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "spid" attribute
*/
public org.apache.xmlbeans.XmlString xgetSpid()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(SPID$0);
return target;
}
}
/**
* True if has "spid" attribute
*/
public boolean isSetSpid()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(SPID$0) != null;
}
}
/**
* 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$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SPID$0);
}
target.setStringValue(spid);
}
}
/**
* Sets (as xml) the "spid" attribute
*/
public void xsetSpid(org.apache.xmlbeans.XmlString spid)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(SPID$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(SPID$0);
}
target.set(spid);
}
}
/**
* Unsets the "spid" attribute
*/
public void unsetSpid()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(SPID$0);
}
}
}