ExtensionTypeImpl.java
package org.ironjacamar.embedded.dsl.ironjacamar20.impl;
import org.jboss.shrinkwrap.descriptor.spi.node.Node;
import org.ironjacamar.embedded.dsl.ironjacamar20.api.ExtensionType;
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;
import org.ironjacamar.embedded.dsl.ironjacamar20.api.ConfigPropertyType;
import org.ironjacamar.embedded.dsl.ironjacamar20.impl.ConfigPropertyTypeImpl;
/**
* This class implements the <code> extensionType </code> xsd type
*/
public class ExtensionTypeImpl<T> implements Child<T>, ExtensionType<T>
{
// -------------------------------------------------------------------------------------||
// Instance Members
// -------------------------------------------------------------------------------------||
private T t;
private Node childNode;
// -------------------------------------------------------------------------------------||
// Constructor
// -------------------------------------------------------------------------------------||
public ExtensionTypeImpl(T t, String nodeName, Node node) {
this.t = t;
this.childNode = node.createChild(nodeName);
}
public ExtensionTypeImpl(T t, String nodeName, Node node, Node childNode) {
this.t = t;
this.childNode = childNode;
}
public T up()
{
return t;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ExtensionType ElementName: ironjacamar:config-propertyType ElementType : config-property
// MaxOccurs: - isGeneric: true isAttribute: false isEnum: false isDataType: false
// --------------------------------------------------------------------------------------------------------||
/**
* If not already created, a new <code>config-property</code> element with the given value will be created.
* Otherwise, the existing <code>config-property</code> element will be returned.
* @return a new or existing instance of <code>ConfigPropertyType<ExtensionType<T>></code>
*/
public ConfigPropertyType<ExtensionType<T>> getOrCreateConfigProperty()
{
Node node = childNode.getOrCreate("config-property");
ConfigPropertyType<ExtensionType<T>> configProperty = new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode, node);
return configProperty;
}
/**
* Removes the <code>config-property</code> element
* @return the current instance of <code>ExtensionType<T></code>
*/
public ExtensionType<T> removeConfigProperty()
{
childNode.removeChildren("config-property");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ExtensionType ElementName: xsd:token ElementType : class-name
// MaxOccurs: - isGeneric: true isAttribute: true isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>class-name</code> attribute
* @param className the value for the attribute <code>class-name</code>
* @return the current instance of <code>ExtensionType<T></code>
*/
public ExtensionType<T> className(String className)
{
childNode.attribute("class-name", className);
return this;
}
/**
* Returns the <code>class-name</code> attribute
* @return the value defined for the attribute <code>class-name</code>
*/
public String getClassName()
{
return childNode.getAttribute("class-name");
}
/**
* Removes the <code>class-name</code> attribute
* @return the current instance of <code>ExtensionType<T></code>
*/
public ExtensionType<T> removeClassName()
{
childNode.removeAttribute("class-name");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ExtensionType ElementName: xsd:token ElementType : module-name
// MaxOccurs: - isGeneric: true isAttribute: true isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>module-name</code> attribute
* @param moduleName the value for the attribute <code>module-name</code>
* @return the current instance of <code>ExtensionType<T></code>
*/
public ExtensionType<T> moduleName(String moduleName)
{
childNode.attribute("module-name", moduleName);
return this;
}
/**
* Returns the <code>module-name</code> attribute
* @return the value defined for the attribute <code>module-name</code>
*/
public String getModuleName()
{
return childNode.getAttribute("module-name");
}
/**
* Removes the <code>module-name</code> attribute
* @return the current instance of <code>ExtensionType<T></code>
*/
public ExtensionType<T> removeModuleName()
{
childNode.removeAttribute("module-name");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ExtensionType ElementName: xsd:token ElementType : module-slot
// MaxOccurs: - isGeneric: true isAttribute: true isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>module-slot</code> attribute
* @param moduleSlot the value for the attribute <code>module-slot</code>
* @return the current instance of <code>ExtensionType<T></code>
*/
public ExtensionType<T> moduleSlot(String moduleSlot)
{
childNode.attribute("module-slot", moduleSlot);
return this;
}
/**
* Returns the <code>module-slot</code> attribute
* @return the value defined for the attribute <code>module-slot</code>
*/
public String getModuleSlot()
{
return childNode.getAttribute("module-slot");
}
/**
* Removes the <code>module-slot</code> attribute
* @return the current instance of <code>ExtensionType<T></code>
*/
public ExtensionType<T> removeModuleSlot()
{
childNode.removeAttribute("module-slot");
return this;
}
}