ShrinkWrap Descriptors Generated Java EE API 2.0.0-alpha-3

org.jboss.shrinkwrap.descriptor.api.facesconfig21
Interface FacesConfigRenderKitType<T>

All Superinterfaces:
Child<T>

public interface FacesConfigRenderKitType<T>
extends Child<T>

This interface defines the contract for the faces-config-render-kitType xsd type

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

Method Summary
 FacesConfigClientBehaviorRendererType<FacesConfigRenderKitType<T>> createClientBehaviorRenderer()
          Creates a new client-behavior-renderer element
 IconType<FacesConfigRenderKitType<T>> createIcon()
          Creates a new icon element
 FacesConfigRendererType<FacesConfigRenderKitType<T>> createRenderer()
          Creates a new renderer element
 FacesConfigRenderKitType<T> description(String... values)
          Creates for all String objects representing description elements, a new description element
 FacesConfigRenderKitType<T> displayName(String... values)
          Creates for all String objects representing display-name elements, a new display-name element
 List<FacesConfigClientBehaviorRendererType<FacesConfigRenderKitType<T>>> getAllClientBehaviorRenderer()
          Returns all client-behavior-renderer elements
 List<String> getAllDescription()
          Returns all description elements
 List<String> getAllDisplayName()
          Returns all display-name elements
 List<IconType<FacesConfigRenderKitType<T>>> getAllIcon()
          Returns all icon elements
 List<FacesConfigRendererType<FacesConfigRenderKitType<T>>> getAllRenderer()
          Returns all renderer elements
 FacesConfigClientBehaviorRendererType<FacesConfigRenderKitType<T>> getOrCreateClientBehaviorRenderer()
          If not already created, a new client-behavior-renderer element will be created and returned.
 IconType<FacesConfigRenderKitType<T>> getOrCreateIcon()
          If not already created, a new icon element will be created and returned.
 FacesConfigRendererType<FacesConfigRenderKitType<T>> getOrCreateRenderer()
          If not already created, a new renderer element will be created and returned.
 String getRenderKitClass()
          Returns the render-kit-class element
 String getRenderKitId()
          Returns the render-kit-id element
 Boolean isRenderKitExtension()
          Removes the render-kit-extension element
 FacesConfigRenderKitType<T> removeAllClientBehaviorRenderer()
          Removes all client-behavior-renderer elements
 FacesConfigRenderKitType<T> removeAllDescription()
          Removes the description element
 FacesConfigRenderKitType<T> removeAllDisplayName()
          Removes the display-name element
 FacesConfigRenderKitType<T> removeAllIcon()
          Removes all icon elements
 FacesConfigRenderKitType<T> removeAllRenderer()
          Removes all renderer elements
 FacesConfigRenderKitType<T> removeRenderKitClass()
          Removes the render-kit-class element
 FacesConfigRenderKitType<T> removeRenderKitExtension()
          Removes the render-kit-extension element
 FacesConfigRenderKitType<T> removeRenderKitId()
          Removes the render-kit-id element
 FacesConfigRenderKitType<T> renderKitClass(String renderKitClass)
          Sets the render-kit-class element
 FacesConfigRenderKitType<T> renderKitExtension()
          Sets the render-kit-extension element
 FacesConfigRenderKitType<T> renderKitId(String renderKitId)
          Sets the render-kit-id element
 
Methods inherited from interface org.jboss.shrinkwrap.descriptor.api.Child
up
 

Method Detail

description

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

getAllDescription

List<String> getAllDescription()
Returns all description elements

Returns:
list of description

removeAllDescription

FacesConfigRenderKitType<T> removeAllDescription()
Removes the description element

Returns:
the current instance of FacesConfigRenderKitType

displayName

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

getAllDisplayName

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

Returns:
list of display-name

removeAllDisplayName

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

Returns:
the current instance of FacesConfigRenderKitType

getOrCreateIcon

IconType<FacesConfigRenderKitType<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<FacesConfigRenderKitType<T>> createIcon()
Creates a new icon element

Returns:
the new created instance of IconType>

getAllIcon

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

Returns:
list of icon

removeAllIcon

FacesConfigRenderKitType<T> removeAllIcon()
Removes all icon elements

Returns:
the current instance of IconType>

renderKitId

FacesConfigRenderKitType<T> renderKitId(String renderKitId)
Sets the render-kit-id element

Parameters:
renderKitId - the value for the element render-kit-id
Returns:
the current instance of FacesConfigRenderKitType

getRenderKitId

String getRenderKitId()
Returns the render-kit-id element

Returns:
the node defined for the element render-kit-id

removeRenderKitId

FacesConfigRenderKitType<T> removeRenderKitId()
Removes the render-kit-id element

Returns:
the current instance of FacesConfigRenderKitType

renderKitClass

FacesConfigRenderKitType<T> renderKitClass(String renderKitClass)
Sets the render-kit-class element

Parameters:
renderKitClass - the value for the element render-kit-class
Returns:
the current instance of FacesConfigRenderKitType

getRenderKitClass

String getRenderKitClass()
Returns the render-kit-class element

Returns:
the node defined for the element render-kit-class

removeRenderKitClass

FacesConfigRenderKitType<T> removeRenderKitClass()
Removes the render-kit-class element

Returns:
the current instance of FacesConfigRenderKitType

getOrCreateRenderer

FacesConfigRendererType<FacesConfigRenderKitType<T>> getOrCreateRenderer()
If not already created, a new renderer element will be created and returned. Otherwise, the first existing renderer element will be returned.

Returns:
the instance defined for the element renderer

createRenderer

FacesConfigRendererType<FacesConfigRenderKitType<T>> createRenderer()
Creates a new renderer element

Returns:
the new created instance of FacesConfigRendererType>

getAllRenderer

List<FacesConfigRendererType<FacesConfigRenderKitType<T>>> getAllRenderer()
Returns all renderer elements

Returns:
list of renderer

removeAllRenderer

FacesConfigRenderKitType<T> removeAllRenderer()
Removes all renderer elements

Returns:
the current instance of FacesConfigRendererType>

getOrCreateClientBehaviorRenderer

FacesConfigClientBehaviorRendererType<FacesConfigRenderKitType<T>> getOrCreateClientBehaviorRenderer()
If not already created, a new client-behavior-renderer element will be created and returned. Otherwise, the first existing client-behavior-renderer element will be returned.

Returns:
the instance defined for the element client-behavior-renderer

createClientBehaviorRenderer

FacesConfigClientBehaviorRendererType<FacesConfigRenderKitType<T>> createClientBehaviorRenderer()
Creates a new client-behavior-renderer element

Returns:
the new created instance of FacesConfigClientBehaviorRendererType>

getAllClientBehaviorRenderer

List<FacesConfigClientBehaviorRendererType<FacesConfigRenderKitType<T>>> getAllClientBehaviorRenderer()
Returns all client-behavior-renderer elements

Returns:
list of client-behavior-renderer

removeAllClientBehaviorRenderer

FacesConfigRenderKitType<T> removeAllClientBehaviorRenderer()
Removes all client-behavior-renderer elements

Returns:
the current instance of FacesConfigClientBehaviorRendererType>

renderKitExtension

FacesConfigRenderKitType<T> renderKitExtension()
Sets the render-kit-extension element

Returns:
the current instance of FacesConfigRenderKitType

isRenderKitExtension

Boolean isRenderKitExtension()
Removes the render-kit-extension element

Returns:
the current instance of FacesConfigRenderKitType

removeRenderKitExtension

FacesConfigRenderKitType<T> removeRenderKitExtension()
Removes the render-kit-extension element

Returns:
the current instance of FacesConfigRenderKitType

ShrinkWrap Descriptors Generated Java EE API 2.0.0-alpha-3

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