ListenerTypeImpl.java
package org.jboss.shrinkwrap.descriptor.impl.j2ee14;
import org.jboss.shrinkwrap.descriptor.spi.node.Node;
import org.jboss.shrinkwrap.descriptor.api.j2ee14.ListenerType;
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.jboss.shrinkwrap.descriptor.api.j2ee14.IconType;
import org.jboss.shrinkwrap.descriptor.impl.j2ee14.IconTypeImpl;
/**
* This class implements the <code> listenerType </code> xsd type
*/
public class ListenerTypeImpl<T> implements Child<T>, ListenerType<T>
{
// -------------------------------------------------------------------------------------||
// Instance Members
// -------------------------------------------------------------------------------------||
private T t;
private Node childNode;
// -------------------------------------------------------------------------------------||
// Constructor
// -------------------------------------------------------------------------------------||
public ListenerTypeImpl(T t, String nodeName, Node node) {
this.t = t;
this.childNode = node.createChild(nodeName);
}
public ListenerTypeImpl(T t, String nodeName, Node node, Node childNode) {
this.t = t;
this.childNode = childNode;
}
public T up()
{
return t;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ListenerType ElementName: xsd:string ElementType : description
// MaxOccurs: -unbounded isGeneric: true isAttribute: false isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Creates for all String objects representing <code>description</code> elements,
* a new <code>description</code> element
* @param values list of <code>description</code> objects
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> description(String ... values)
{
if (values != null)
{
for(String name: values)
{
childNode.createChild("description").text(name);
}
}
return this;
}
/**
* Returns all <code>description</code> elements
* @return list of <code>description</code>
*/
public List<String> getAllDescription()
{
List<String> result = new ArrayList<String>();
List<Node> nodes = childNode.get("description");
for (Node node : nodes)
{
result.add(node.getText());
}
return result;
}
/**
* Removes the <code>description</code> element
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> removeAllDescription()
{
childNode.removeChildren("description");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ListenerType ElementName: xsd:token ElementType : display-name
// MaxOccurs: -unbounded isGeneric: true isAttribute: false isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Creates for all String objects representing <code>display-name</code> elements,
* a new <code>display-name</code> element
* @param values list of <code>display-name</code> objects
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> displayName(String ... values)
{
if (values != null)
{
for(String name: values)
{
childNode.createChild("display-name").text(name);
}
}
return this;
}
/**
* Returns all <code>display-name</code> elements
* @return list of <code>display-name</code>
*/
public List<String> getAllDisplayName()
{
List<String> result = new ArrayList<String>();
List<Node> nodes = childNode.get("display-name");
for (Node node : nodes)
{
result.add(node.getText());
}
return result;
}
/**
* Removes the <code>display-name</code> element
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> removeAllDisplayName()
{
childNode.removeChildren("display-name");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ListenerType ElementName: j2ee:iconType ElementType : icon
// MaxOccurs: -unbounded isGeneric: true isAttribute: false isEnum: false isDataType: false
// --------------------------------------------------------------------------------------------------------||
/**
* If not already created, a new <code>icon</code> element will be created and returned.
* Otherwise, the first existing <code>icon</code> element will be returned.
* @return the instance defined for the element <code>icon</code>
*/
public IconType<ListenerType<T>> getOrCreateIcon()
{
List<Node> nodeList = childNode.get("icon");
if (nodeList != null && nodeList.size() > 0)
{
return new IconTypeImpl<ListenerType<T>>(this, "icon", childNode, nodeList.get(0));
}
return createIcon();
}
/**
* Creates a new <code>icon</code> element
* @return the new created instance of <code>IconType<ListenerType<T>></code>
*/
public IconType<ListenerType<T>> createIcon()
{
return new IconTypeImpl<ListenerType<T>>(this, "icon", childNode);
}
/**
* Returns all <code>icon</code> elements
* @return list of <code>icon</code>
*/
public List<IconType<ListenerType<T>>> getAllIcon()
{
List<IconType<ListenerType<T>>> list = new ArrayList<IconType<ListenerType<T>>>();
List<Node> nodeList = childNode.get("icon");
for(Node node: nodeList)
{
IconType<ListenerType<T>> type = new IconTypeImpl<ListenerType<T>>(this, "icon", childNode, node);
list.add(type);
}
return list;
}
/**
* Removes all <code>icon</code> elements
* @return the current instance of <code>IconType<ListenerType<T>></code>
*/
public ListenerType<T> removeAllIcon()
{
childNode.removeChildren("icon");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ListenerType ElementName: xsd:token ElementType : listener-class
// MaxOccurs: - isGeneric: true isAttribute: false isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>listener-class</code> element
* @param listenerClass the value for the element <code>listener-class</code>
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> listenerClass(String listenerClass)
{
childNode.getOrCreate("listener-class").text(listenerClass);
return this;
}
/**
* Returns the <code>listener-class</code> element
* @return the node defined for the element <code>listener-class</code>
*/
public String getListenerClass()
{
return childNode.getTextValueForPatternName("listener-class");
}
/**
* Removes the <code>listener-class</code> element
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> removeListenerClass()
{
childNode.removeChildren("listener-class");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: ListenerType ElementName: xsd:ID ElementType : id
// MaxOccurs: - isGeneric: true isAttribute: true isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>id</code> attribute
* @param id the value for the attribute <code>id</code>
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> id(String id)
{
childNode.attribute("id", id);
return this;
}
/**
* Returns the <code>id</code> attribute
* @return the value defined for the attribute <code>id</code>
*/
public String getId()
{
return childNode.getAttribute("id");
}
/**
* Removes the <code>id</code> attribute
* @return the current instance of <code>ListenerType<T></code>
*/
public ListenerType<T> removeId()
{
childNode.removeAttribute("id");
return this;
}
}