org.example.wsHT.impl.XMLExcludedOwnersDocumentImpl Maven / Gradle / Ivy
The newest version!
/*
* An XML document type.
* Localname: excludedOwners
* Namespace: http://www.example.org/WS-HT
* Java type: org.example.wsHT.XMLExcludedOwnersDocument
*
* Automatically generated - do not modify.
*/
package org.example.wsHT.impl;
/**
* A document containing one excludedOwners(@http://www.example.org/WS-HT) element.
*
* This is a complex type.
*/
public class XMLExcludedOwnersDocumentImpl extends org.apache.xmlbeans.impl.values.XmlComplexContentImpl implements org.example.wsHT.XMLExcludedOwnersDocument
{
private static final long serialVersionUID = 1L;
public XMLExcludedOwnersDocumentImpl(org.apache.xmlbeans.SchemaType sType)
{
super(sType);
}
private static final javax.xml.namespace.QName EXCLUDEDOWNERS$0 =
new javax.xml.namespace.QName("http://www.example.org/WS-HT", "excludedOwners");
/**
* Gets the "excludedOwners" element
*/
public org.example.wsHT.XMLTGenericHumanRole getExcludedOwners()
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.XMLTGenericHumanRole target = null;
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().find_element_user(EXCLUDEDOWNERS$0, 0);
if (target == null)
{
return null;
}
return target;
}
}
/**
* Sets the "excludedOwners" element
*/
public void setExcludedOwners(org.example.wsHT.XMLTGenericHumanRole excludedOwners)
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.XMLTGenericHumanRole target = null;
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().find_element_user(EXCLUDEDOWNERS$0, 0);
if (target == null)
{
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().add_element_user(EXCLUDEDOWNERS$0);
}
target.set(excludedOwners);
}
}
/**
* Appends and returns a new empty "excludedOwners" element
*/
public org.example.wsHT.XMLTGenericHumanRole addNewExcludedOwners()
{
synchronized (monitor())
{
check_orphaned();
org.example.wsHT.XMLTGenericHumanRole target = null;
target = (org.example.wsHT.XMLTGenericHumanRole)get_store().add_element_user(EXCLUDEDOWNERS$0);
return target;
}
}
}