org.jboss.shrinkwrap.descriptor.api.javaee5
Interface ParamValueType<T>

All Superinterfaces:
Child<T>

public interface ParamValueType<T>
extends Child<T>

This interface defines the contract for the param-valueType xsd type

Since:
Generation date :2013-01-26T19:26:58.657+01:00
Author:
Ralf Battenfeld, Andrew Lee Rubinger

Method Summary
 ParamValueType<T> description(String... values)
          Creates for all String objects representing description elements, a new description element
 List<String> getAllDescription()
          Returns all description elements
 String getId()
          Returns the id attribute
 String getParamName()
          Returns the param-name element
 String getParamValue()
          Returns the param-value element
 ParamValueType<T> id(String id)
          Sets the id attribute
 ParamValueType<T> paramName(String paramName)
          Sets the param-name element
 ParamValueType<T> paramValue(String paramValue)
          Sets the param-value element
 ParamValueType<T> removeAllDescription()
          Removes the description element
 ParamValueType<T> removeId()
          Removes the id attribute
 ParamValueType<T> removeParamName()
          Removes the param-name element
 ParamValueType<T> removeParamValue()
          Removes the param-value element
 
Methods inherited from interface org.jboss.shrinkwrap.descriptor.api.Child
up
 

Method Detail

description

ParamValueType<T> description(String... values)
Creates for all String objects representing description elements, a new description element

Parameters:
values - list of description objects
Returns:
the current instance of ParamValueType

getAllDescription

List<String> getAllDescription()
Returns all description elements

Returns:
list of description

removeAllDescription

ParamValueType<T> removeAllDescription()
Removes the description element

Returns:
the current instance of ParamValueType

paramName

ParamValueType<T> paramName(String paramName)
Sets the param-name element

Parameters:
paramName - the value for the element param-name
Returns:
the current instance of ParamValueType

getParamName

String getParamName()
Returns the param-name element

Returns:
the node defined for the element param-name

removeParamName

ParamValueType<T> removeParamName()
Removes the param-name element

Returns:
the current instance of ParamValueType

paramValue

ParamValueType<T> paramValue(String paramValue)
Sets the param-value element

Parameters:
paramValue - the value for the element param-value
Returns:
the current instance of ParamValueType

getParamValue

String getParamValue()
Returns the param-value element

Returns:
the node defined for the element param-value

removeParamValue

ParamValueType<T> removeParamValue()
Removes the param-value element

Returns:
the current instance of ParamValueType

id

ParamValueType<T> id(String id)
Sets the id attribute

Parameters:
id - the value for the attribute id
Returns:
the current instance of ParamValueType

getId

String getId()
Returns the id attribute

Returns:
the value defined for the attribute id

removeId

ParamValueType<T> removeId()
Removes the id attribute

Returns:
the current instance of ParamValueType


Copyright © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.