org.apache.xmlbeans.impl.xb.xmlschema.impl.SpaceAttributeImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-xmlbeans Show documentation
Show all versions of commons-xmlbeans Show documentation
The Apache Commons Codec package contains simple encoder and decoders for
various formats such as Base64 and Hexadecimal. In addition to these
widely used encoders and decoders, the codec package also maintains a
collection of phonetic encoding utilities.
The newest version!
/*
* An XML attribute type.
* Localname: space
* Namespace: http://www.w3.org/XML/1998/namespace
* Java type: org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute
*
* Automatically generated - do not modify.
*/
package org.apache.xmlbeans.impl.xb.xmlschema.impl;
/**
* A document containing one space(@http://www.w3.org/XML/1998/namespace) attribute.
*
* This is a complex type.
*/
public class SpaceAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute
{
private static final long serialVersionUID = 1L;
public SpaceAttributeImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName SPACE$0 =
new javax.xml.namespace.QName("http://www.w3.org/XML/1998/namespace", "space");
/**
* Gets the "space" attribute
*/
public org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space.Enum getSpace()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SPACE$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(SPACE$0);
}
if (target == null)
{
return null;
}
return (org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space.Enum)target.getEnumValue();
}
}
/**
* Gets (as xml) the "space" attribute
*/
public org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space xgetSpace()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space target = null;
target = (org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space)get_store().find_attribute_user(SPACE$0);
if (target == null)
{
target = (org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space)get_default_attribute_value(SPACE$0);
}
return target;
}
}
/**
* True if has "space" attribute
*/
public boolean isSetSpace()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(SPACE$0) != null;
}
}
/**
* Sets the "space" attribute
*/
public void setSpace(org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space.Enum space)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SPACE$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SPACE$0);
}
target.setEnumValue(space);
}
}
/**
* Sets (as xml) the "space" attribute
*/
public void xsetSpace(org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space space)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space target = null;
target = (org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space)get_store().find_attribute_user(SPACE$0);
if (target == null)
{
target = (org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space)get_store().add_attribute_user(SPACE$0);
}
target.set(space);
}
}
/**
* Unsets the "space" attribute
*/
public void unsetSpace()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(SPACE$0);
}
}
/**
* An XML space(@http://www.w3.org/XML/1998/namespace).
*
* This is an atomic type that is a restriction of org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute$Space.
*/
public static class SpaceImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.apache.xmlbeans.impl.xb.xmlschema.SpaceAttribute.Space
{
private static final long serialVersionUID = 1L;
public SpaceImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType, false);
}
protected SpaceImpl(org.apache.xmlbeans.SchemaType sType, boolean b)
{
super(sType, b);
}
}
}