schemasMicrosoftComOfficeOffice.impl.CTFillImpl Maven / Gradle / Ivy
The newest version!
/*
* XML Type: CT_Fill
* Namespace: urn:schemas-microsoft-com:office:office
* Java type: schemasMicrosoftComOfficeOffice.CTFill
*
* Automatically generated - do not modify.
*/
package schemasMicrosoftComOfficeOffice.impl;
/**
* An XML CT_Fill(@urn:schemas-microsoft-com:office:office).
*
* This is a complex type.
*/
public class CTFillImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements schemasMicrosoftComOfficeOffice.CTFill
{
public CTFillImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName EXT$0 =
new javax.xml.namespace.QName("urn:schemas-microsoft-com:vml", "ext");
private static final javax.xml.namespace.QName TYPE$2 =
new javax.xml.namespace.QName("", "type");
/**
* Gets the "ext" attribute
*/
public schemasMicrosoftComVml.STExt.Enum getExt()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXT$0);
if (target == null)
{
return null;
}
return (schemasMicrosoftComVml.STExt.Enum)target.getEnumValue();
}
}
/**
* Gets (as xml) the "ext" attribute
*/
public schemasMicrosoftComVml.STExt xgetExt()
{
synchronized (monitor())
{
check_orphaned();
schemasMicrosoftComVml.STExt target = null;
target = (schemasMicrosoftComVml.STExt)get_store().find_attribute_user(EXT$0);
return target;
}
}
/**
* True if has "ext" attribute
*/
public boolean isSetExt()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(EXT$0) != null;
}
}
/**
* Sets the "ext" attribute
*/
public void setExt(schemasMicrosoftComVml.STExt.Enum ext)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(EXT$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(EXT$0);
}
target.setEnumValue(ext);
}
}
/**
* Sets (as xml) the "ext" attribute
*/
public void xsetExt(schemasMicrosoftComVml.STExt ext)
{
synchronized (monitor())
{
check_orphaned();
schemasMicrosoftComVml.STExt target = null;
target = (schemasMicrosoftComVml.STExt)get_store().find_attribute_user(EXT$0);
if (target == null)
{
target = (schemasMicrosoftComVml.STExt)get_store().add_attribute_user(EXT$0);
}
target.set(ext);
}
}
/**
* Unsets the "ext" attribute
*/
public void unsetExt()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(EXT$0);
}
}
/**
* Gets the "type" attribute
*/
public schemasMicrosoftComOfficeOffice.STFillType.Enum getType()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(TYPE$2);
if (target == null)
{
return null;
}
return (schemasMicrosoftComOfficeOffice.STFillType.Enum)target.getEnumValue();
}
}
/**
* Gets (as xml) the "type" attribute
*/
public schemasMicrosoftComOfficeOffice.STFillType xgetType()
{
synchronized (monitor())
{
check_orphaned();
schemasMicrosoftComOfficeOffice.STFillType target = null;
target = (schemasMicrosoftComOfficeOffice.STFillType)get_store().find_attribute_user(TYPE$2);
return target;
}
}
/**
* True if has "type" attribute
*/
public boolean isSetType()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(TYPE$2) != null;
}
}
/**
* Sets the "type" attribute
*/
public void setType(schemasMicrosoftComOfficeOffice.STFillType.Enum type)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(TYPE$2);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(TYPE$2);
}
target.setEnumValue(type);
}
}
/**
* Sets (as xml) the "type" attribute
*/
public void xsetType(schemasMicrosoftComOfficeOffice.STFillType type)
{
synchronized (monitor())
{
check_orphaned();
schemasMicrosoftComOfficeOffice.STFillType target = null;
target = (schemasMicrosoftComOfficeOffice.STFillType)get_store().find_attribute_user(TYPE$2);
if (target == null)
{
target = (schemasMicrosoftComOfficeOffice.STFillType)get_store().add_attribute_user(TYPE$2);
}
target.set(type);
}
}
/**
* Unsets the "type" attribute
*/
public void unsetType()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(TYPE$2);
}
}
}