ShrinkWrap Descriptors Generated Java EE API 2.0.0-alpha-3

org.jboss.shrinkwrap.descriptor.api.jsptaglibrary20
Interface TagType<T>

All Superinterfaces:
Child<T>

public interface TagType<T>
extends Child<T>

This interface defines the contract for the tagType xsd type

Since:
Generation date :2012-05-09T23:45:02.086-07:00
Author:
Ralf Battenfeld, Andrew Lee Rubinger

Method Summary
 TagType<T> bodyContent(BodyContentType bodyContent)
          Sets the body-content element
 TagType<T> bodyContent(String bodyContent)
          Sets the body-content element
 TldAttributeType<TagType<T>> createAttribute()
          Creates a new attribute element
 IconType<TagType<T>> createIcon()
          Creates a new icon element
 TldExtensionType<TagType<T>> createTagExtension()
          Creates a new tag-extension element
 VariableType<TagType<T>> createVariable()
          Creates a new variable element
 TagType<T> description(String... values)
          Creates for all String objects representing description elements, a new description element
 TagType<T> displayName(String... values)
          Creates for all String objects representing display-name elements, a new display-name element
 TagType<T> dynamicAttributes(GenericBooleanType dynamicAttributes)
          Sets the dynamic-attributes element
 TagType<T> dynamicAttributes(String dynamicAttributes)
          Sets the dynamic-attributes element
 TagType<T> example(String example)
          Sets the example element
 List<TldAttributeType<TagType<T>>> getAllAttribute()
          Returns all attribute elements
 List<String> getAllDescription()
          Returns all description elements
 List<String> getAllDisplayName()
          Returns all display-name elements
 List<IconType<TagType<T>>> getAllIcon()
          Returns all icon elements
 List<TldExtensionType<TagType<T>>> getAllTagExtension()
          Returns all tag-extension elements
 List<VariableType<TagType<T>>> getAllVariable()
          Returns all variable elements
 BodyContentType getBodyContent()
          Returns the body-content element
 String getBodyContentAsString()
          Returns the body-content element
 GenericBooleanType getDynamicAttributes()
          Returns the dynamic-attributes element
 String getDynamicAttributesAsString()
          Returns the dynamic-attributes element
 String getExample()
          Returns the example element
 String getName()
          Returns the name element
 TldAttributeType<TagType<T>> getOrCreateAttribute()
          If not already created, a new attribute element will be created and returned.
 IconType<TagType<T>> getOrCreateIcon()
          If not already created, a new icon element will be created and returned.
 TldExtensionType<TagType<T>> getOrCreateTagExtension()
          If not already created, a new tag-extension element will be created and returned.
 VariableType<TagType<T>> getOrCreateVariable()
          If not already created, a new variable element will be created and returned.
 String getTagClass()
          Returns the tag-class element
 String getTeiClass()
          Returns the tei-class element
 TagType<T> name(String name)
          Sets the name element
 TagType<T> removeAllAttribute()
          Removes all attribute elements
 TagType<T> removeAllDescription()
          Removes the description element
 TagType<T> removeAllDisplayName()
          Removes the display-name element
 TagType<T> removeAllIcon()
          Removes all icon elements
 TagType<T> removeAllTagExtension()
          Removes all tag-extension elements
 TagType<T> removeAllVariable()
          Removes all variable elements
 TagType<T> removeBodyContent()
          Removes the body-content attribute
 TagType<T> removeDynamicAttributes()
          Removes the dynamic-attributes attribute
 TagType<T> removeExample()
          Removes the example element
 TagType<T> removeName()
          Removes the name element
 TagType<T> removeTagClass()
          Removes the tag-class element
 TagType<T> removeTeiClass()
          Removes the tei-class element
 TagType<T> tagClass(String tagClass)
          Sets the tag-class element
 TagType<T> teiClass(String teiClass)
          Sets the tei-class element
 
Methods inherited from interface org.jboss.shrinkwrap.descriptor.api.Child
up
 

Method Detail

description

TagType<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 TagType

getAllDescription

List<String> getAllDescription()
Returns all description elements

Returns:
list of description

removeAllDescription

TagType<T> removeAllDescription()
Removes the description element

Returns:
the current instance of TagType

displayName

TagType<T> displayName(String... values)
Creates for all String objects representing display-name elements, a new display-name element

Parameters:
values - list of display-name objects
Returns:
the current instance of TagType

getAllDisplayName

List<String> getAllDisplayName()
Returns all display-name elements

Returns:
list of display-name

removeAllDisplayName

TagType<T> removeAllDisplayName()
Removes the display-name element

Returns:
the current instance of TagType

getOrCreateIcon

IconType<TagType<T>> getOrCreateIcon()
If not already created, a new icon element will be created and returned. Otherwise, the first existing icon element will be returned.

Returns:
the instance defined for the element icon

createIcon

IconType<TagType<T>> createIcon()
Creates a new icon element

Returns:
the new created instance of IconType>

getAllIcon

List<IconType<TagType<T>>> getAllIcon()
Returns all icon elements

Returns:
list of icon

removeAllIcon

TagType<T> removeAllIcon()
Removes all icon elements

Returns:
the current instance of IconType>

name

TagType<T> name(String name)
Sets the name element

Parameters:
name - the value for the element name
Returns:
the current instance of TagType

getName

String getName()
Returns the name element

Returns:
the node defined for the element name

removeName

TagType<T> removeName()
Removes the name element

Returns:
the current instance of TagType

tagClass

TagType<T> tagClass(String tagClass)
Sets the tag-class element

Parameters:
tagClass - the value for the element tag-class
Returns:
the current instance of TagType

getTagClass

String getTagClass()
Returns the tag-class element

Returns:
the node defined for the element tag-class

removeTagClass

TagType<T> removeTagClass()
Removes the tag-class element

Returns:
the current instance of TagType

teiClass

TagType<T> teiClass(String teiClass)
Sets the tei-class element

Parameters:
teiClass - the value for the element tei-class
Returns:
the current instance of TagType

getTeiClass

String getTeiClass()
Returns the tei-class element

Returns:
the node defined for the element tei-class

removeTeiClass

TagType<T> removeTeiClass()
Removes the tei-class element

Returns:
the current instance of TagType

bodyContent

TagType<T> bodyContent(BodyContentType bodyContent)
Sets the body-content element

Parameters:
bodyContent - the value for the element body-content
Returns:
the current instance of TagType

bodyContent

TagType<T> bodyContent(String bodyContent)
Sets the body-content element

Parameters:
bodyContent - the value for the element body-content
Returns:
the current instance of TagType

getBodyContent

BodyContentType getBodyContent()
Returns the body-content element

Returns:
the value found for the element body-content

getBodyContentAsString

String getBodyContentAsString()
Returns the body-content element

Returns:
the value found for the element body-content

removeBodyContent

TagType<T> removeBodyContent()
Removes the body-content attribute

Returns:
the current instance of TagType

getOrCreateVariable

VariableType<TagType<T>> getOrCreateVariable()
If not already created, a new variable element will be created and returned. Otherwise, the first existing variable element will be returned.

Returns:
the instance defined for the element variable

createVariable

VariableType<TagType<T>> createVariable()
Creates a new variable element

Returns:
the new created instance of VariableType>

getAllVariable

List<VariableType<TagType<T>>> getAllVariable()
Returns all variable elements

Returns:
list of variable

removeAllVariable

TagType<T> removeAllVariable()
Removes all variable elements

Returns:
the current instance of VariableType>

getOrCreateAttribute

TldAttributeType<TagType<T>> getOrCreateAttribute()
If not already created, a new attribute element will be created and returned. Otherwise, the first existing attribute element will be returned.

Returns:
the instance defined for the element attribute

createAttribute

TldAttributeType<TagType<T>> createAttribute()
Creates a new attribute element

Returns:
the new created instance of TldAttributeType>

getAllAttribute

List<TldAttributeType<TagType<T>>> getAllAttribute()
Returns all attribute elements

Returns:
list of attribute

removeAllAttribute

TagType<T> removeAllAttribute()
Removes all attribute elements

Returns:
the current instance of TldAttributeType>

dynamicAttributes

TagType<T> dynamicAttributes(GenericBooleanType dynamicAttributes)
Sets the dynamic-attributes element

Parameters:
dynamicAttributes - the value for the element dynamic-attributes
Returns:
the current instance of TagType

dynamicAttributes

TagType<T> dynamicAttributes(String dynamicAttributes)
Sets the dynamic-attributes element

Parameters:
dynamicAttributes - the value for the element dynamic-attributes
Returns:
the current instance of TagType

getDynamicAttributes

GenericBooleanType getDynamicAttributes()
Returns the dynamic-attributes element

Returns:
the value found for the element dynamic-attributes

getDynamicAttributesAsString

String getDynamicAttributesAsString()
Returns the dynamic-attributes element

Returns:
the value found for the element dynamic-attributes

removeDynamicAttributes

TagType<T> removeDynamicAttributes()
Removes the dynamic-attributes attribute

Returns:
the current instance of TagType

example

TagType<T> example(String example)
Sets the example element

Parameters:
example - the value for the element example
Returns:
the current instance of TagType

getExample

String getExample()
Returns the example element

Returns:
the node defined for the element example

removeExample

TagType<T> removeExample()
Removes the example element

Returns:
the current instance of TagType

getOrCreateTagExtension

TldExtensionType<TagType<T>> getOrCreateTagExtension()
If not already created, a new tag-extension element will be created and returned. Otherwise, the first existing tag-extension element will be returned.

Returns:
the instance defined for the element tag-extension

createTagExtension

TldExtensionType<TagType<T>> createTagExtension()
Creates a new tag-extension element

Returns:
the new created instance of TldExtensionType>

getAllTagExtension

List<TldExtensionType<TagType<T>>> getAllTagExtension()
Returns all tag-extension elements

Returns:
list of tag-extension

removeAllTagExtension

TagType<T> removeAllTagExtension()
Removes all tag-extension elements

Returns:
the current instance of TldExtensionType>

ShrinkWrap Descriptors Generated Java EE API 2.0.0-alpha-3

Copyright © 2012 JBoss by Red Hat. All Rights Reserved.