
org.w3.x1999.xlink.impl.ShowAttributeImpl Maven / Gradle / Ivy
The newest version!
/*
* An XML attribute type.
* Localname: show
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.ShowAttribute
*
* Automatically generated - do not modify.
*/
package org.w3.x1999.xlink.impl;
/*-
* #%L
* GraphWalker Input/Output
* %%
* Copyright (C) 2005 - 2024 GraphWalker
* %%
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
* #L%
*/
/**
* A document containing one show(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public class ShowAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.w3.x1999.xlink.ShowAttribute
{
private static final long serialVersionUID = 1L;
public ShowAttributeImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName SHOW$0 =
new javax.xml.namespace.QName("http://www.w3.org/1999/xlink", "show");
/**
* Gets the "show" attribute
*/
public org.w3.x1999.xlink.ShowAttribute.Show.Enum getShow()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOW$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_default_attribute_value(SHOW$0);
}
if (target == null)
{
return null;
}
return (org.w3.x1999.xlink.ShowAttribute.Show.Enum)target.getEnumValue();
}
}
/**
* Gets (as xml) the "show" attribute
*/
public org.w3.x1999.xlink.ShowAttribute.Show xgetShow()
{
synchronized (monitor())
{
check_orphaned();
org.w3.x1999.xlink.ShowAttribute.Show target = null;
target = (org.w3.x1999.xlink.ShowAttribute.Show)get_store().find_attribute_user(SHOW$0);
if (target == null)
{
target = (org.w3.x1999.xlink.ShowAttribute.Show)get_default_attribute_value(SHOW$0);
}
return target;
}
}
/**
* True if has "show" attribute
*/
public boolean isSetShow()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(SHOW$0) != null;
}
}
/**
* Sets the "show" attribute
*/
public void setShow(org.w3.x1999.xlink.ShowAttribute.Show.Enum show)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(SHOW$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(SHOW$0);
}
target.setEnumValue(show);
}
}
/**
* Sets (as xml) the "show" attribute
*/
public void xsetShow(org.w3.x1999.xlink.ShowAttribute.Show show)
{
synchronized (monitor())
{
check_orphaned();
org.w3.x1999.xlink.ShowAttribute.Show target = null;
target = (org.w3.x1999.xlink.ShowAttribute.Show)get_store().find_attribute_user(SHOW$0);
if (target == null)
{
target = (org.w3.x1999.xlink.ShowAttribute.Show)get_store().add_attribute_user(SHOW$0);
}
target.set(show);
}
}
/**
* Unsets the "show" attribute
*/
public void unsetShow()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(SHOW$0);
}
}
/**
* An XML show(@http://www.w3.org/1999/xlink).
*
* This is an atomic type that is a restriction of org.w3.x1999.xlink.ShowAttribute$Show.
*/
public static class ShowImpl extends org.apache.xmlbeans.impl.values.JavaStringEnumerationHolderEx implements org.w3.x1999.xlink.ShowAttribute.Show
{
private static final long serialVersionUID = 1L;
public ShowImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType, false);
}
protected ShowImpl(org.apache.xmlbeans.SchemaType sType, boolean b)
{
super(sType, b);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy