org.w3.x1999.xlink.impl.ArcroleAttributeImpl Maven / Gradle / Ivy
/*
* An XML attribute type.
* Localname: arcrole
* Namespace: http://www.w3.org/1999/xlink
* Java type: org.w3.x1999.xlink.ArcroleAttribute
*
* Automatically generated - do not modify.
*/
package org.w3.x1999.xlink.impl;
/*
* #%L
* GraphWalker Input/Output
* %%
* Copyright (C) 2005 - 2016 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 arcrole(@http://www.w3.org/1999/xlink) attribute.
*
* This is a complex type.
*/
public class ArcroleAttributeImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.w3.x1999.xlink.ArcroleAttribute
{
private static final long serialVersionUID = 1L;
public ArcroleAttributeImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName ARCROLE$0 =
new javax.xml.namespace.QName("http://www.w3.org/1999/xlink", "arcrole");
/**
* Gets the "arcrole" attribute
*/
public java.lang.String getArcrole()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ARCROLE$0);
if (target == null)
{
return null;
}
return target.getStringValue();
}
}
/**
* Gets (as xml) the "arcrole" attribute
*/
public org.apache.xmlbeans.XmlString xgetArcrole()
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(ARCROLE$0);
return target;
}
}
/**
* True if has "arcrole" attribute
*/
public boolean isSetArcrole()
{
synchronized (monitor())
{
check_orphaned();
return get_store().find_attribute_user(ARCROLE$0) != null;
}
}
/**
* Sets the "arcrole" attribute
*/
public void setArcrole(java.lang.String arcrole)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.SimpleValue target = null;
target = (org.apache.xmlbeans.SimpleValue)get_store().find_attribute_user(ARCROLE$0);
if (target == null)
{
target = (org.apache.xmlbeans.SimpleValue)get_store().add_attribute_user(ARCROLE$0);
}
target.setStringValue(arcrole);
}
}
/**
* Sets (as xml) the "arcrole" attribute
*/
public void xsetArcrole(org.apache.xmlbeans.XmlString arcrole)
{
synchronized (monitor())
{
check_orphaned();
org.apache.xmlbeans.XmlString target = null;
target = (org.apache.xmlbeans.XmlString)get_store().find_attribute_user(ARCROLE$0);
if (target == null)
{
target = (org.apache.xmlbeans.XmlString)get_store().add_attribute_user(ARCROLE$0);
}
target.set(arcrole);
}
}
/**
* Unsets the "arcrole" attribute
*/
public void unsetArcrole()
{
synchronized (monitor())
{
check_orphaned();
get_store().remove_attribute(ARCROLE$0);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy