PropertyTypeImpl.java
package org.jboss.shrinkwrap.descriptor.impl.javaee6;
import org.jboss.shrinkwrap.descriptor.spi.node.Node;
import org.jboss.shrinkwrap.descriptor.api.javaee6.PropertyType;
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> propertyType </code> xsd type
*/
public class PropertyTypeImpl<T> implements Child<T>, PropertyType<T>
{
// -------------------------------------------------------------------------------------||
// Instance Members
// -------------------------------------------------------------------------------------||
private T t;
private Node childNode;
// -------------------------------------------------------------------------------------||
// Constructor
// -------------------------------------------------------------------------------------||
public PropertyTypeImpl(T t, String nodeName, Node node) {
this.t = t;
this.childNode = node.createChild(nodeName);
}
public PropertyTypeImpl(T t, String nodeName, Node node, Node childNode) {
this.t = t;
this.childNode = childNode;
}
public T up()
{
return t;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: PropertyType ElementName: xsd:string ElementType : name
// MaxOccurs: - isGeneric: true isAttribute: false isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>name</code> element
* @param name the value for the element <code>name</code>
* @return the current instance of <code>PropertyType<T></code>
*/
public PropertyType<T> name(String name)
{
childNode.getOrCreate("name").text(name);
return this;
}
/**
* Returns the <code>name</code> element
* @return the node defined for the element <code>name</code>
*/
public String getName()
{
return childNode.getTextValueForPatternName("name");
}
/**
* Removes the <code>name</code> element
* @return the current instance of <code>PropertyType<T></code>
*/
public PropertyType<T> removeName()
{
childNode.removeChildren("name");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: PropertyType ElementName: xsd:string ElementType : value
// MaxOccurs: - isGeneric: true isAttribute: false isEnum: false isDataType: true
// --------------------------------------------------------------------------------------------------------||
/**
* Sets the <code>value</code> element
* @param value the value for the element <code>value</code>
* @return the current instance of <code>PropertyType<T></code>
*/
public PropertyType<T> value(String value)
{
childNode.getOrCreate("value").text(value);
return this;
}
/**
* Returns the <code>value</code> element
* @return the node defined for the element <code>value</code>
*/
public String getValue()
{
return childNode.getTextValueForPatternName("value");
}
/**
* Removes the <code>value</code> element
* @return the current instance of <code>PropertyType<T></code>
*/
public PropertyType<T> removeValue()
{
childNode.removeChildren("value");
return this;
}
// --------------------------------------------------------------------------------------------------------||
// ClassName: PropertyType 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>PropertyType<T></code>
*/
public PropertyType<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>PropertyType<T></code>
*/
public PropertyType<T> removeId()
{
childNode.removeAttribute("id");
return this;
}
}