XaDatasourcePropertyTypeImpl.java
package org.ironjacamar.embedded.dsl.datasources20.impl;
import org.jboss.shrinkwrap.descriptor.spi.node.Node;
import org.ironjacamar.embedded.dsl.datasources20.api.XaDatasourcePropertyType;
import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.impl.base.XMLDate;
import org.jboss.shrinkwrap.descriptor.impl.base.Strings;
import org.jboss.shrinkwrap.descriptor.api.DescriptorExporter;
/**
* This class implements the <code> xa-datasource-propertyType </code> xsd type
*/
public class XaDatasourcePropertyTypeImpl<T> implements Child<T>, XaDatasourcePropertyType<T>
{
// -------------------------------------------------------------------------------------||
// Instance Members
// -------------------------------------------------------------------------------------||
private T t;
private Node childNode;
// -------------------------------------------------------------------------------------||
// Constructor
// -------------------------------------------------------------------------------------||
public XaDatasourcePropertyTypeImpl(T t, String nodeName, Node node) {
this.t = t;
this.childNode = node.createChild(nodeName);
}
public XaDatasourcePropertyTypeImpl(T t, String nodeName, Node node, Node childNode) {
this.t = t;
this.childNode = childNode;
}
public T up()
{
return t;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: XaDatasourcePropertyType ElementName: text ElementType : xa-datasource-propertyType
// MaxOccurs: - isGeneric: true isAttribute: false isEnum: false isDataType: false
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the body text for the element <code>xa-datasource-propertyType</code>
* @param xaDatasourcePropertyType the value for the body text <code>xa-datasource-propertyType</code>
* @return the current instance of <code>XaDatasourcePropertyType<T></code>
*/
public XaDatasourcePropertyType<T> text(String value)
{
childNode.text(value);
return this;
}
/**
* Returns the body text of the element <code>xa-datasource-propertyType</code>
* @return the value defined for the text <code>xa-datasource-propertyType</code>
*/
public String getText()
{
return childNode.getText();
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: XaDatasourcePropertyType ElementName: xsd:token ElementType : name
// MaxOccurs: - isGeneric: true isAttribute: true isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>name</code> attribute
* @param name the value for the attribute <code>name</code>
* @return the current instance of <code>XaDatasourcePropertyType<T></code>
*/
public XaDatasourcePropertyType<T> name(String name)
{
childNode.attribute("name", name);
return this;
}
/**
* Returns the <code>name</code> attribute
* @return the value defined for the attribute <code>name</code>
*/
public String getName()
{
return childNode.getAttribute("name");
}
/**
* Removes the <code>name</code> attribute
* @return the current instance of <code>XaDatasourcePropertyType<T></code>
*/
public XaDatasourcePropertyType<T> removeName()
{
childNode.removeAttribute("name");
return this;
}
}