Uses of Interface
org.apache.myfaces.trinidadinternal.ui.MutableUINode

Packages that use MutableUINode
org.apache.myfaces.trinidadinternal.renderkit.htmlBasic   
org.apache.myfaces.trinidadinternal.ui   
org.apache.myfaces.trinidadinternal.ui.beans   
org.apache.myfaces.trinidadinternal.ui.beans.message   
org.apache.myfaces.trinidadinternal.ui.collection   
org.apache.myfaces.trinidadinternal.ui.composite   
org.apache.myfaces.trinidadinternal.ui.html   
org.apache.myfaces.trinidadinternal.ui.laf.base   
org.apache.myfaces.trinidadinternal.ui.laf.base.pda   
org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml   
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.renderkit.htmlBasic
 

Methods in org.apache.myfaces.trinidadinternal.renderkit.htmlBasic with parameters of type MutableUINode
protected  void UINodeRenderer.setAttribute(javax.faces.component.UIComponent component, java.lang.String attrName, MutableUINode node, AttributeKey attrKey)
          Sets an attribute if it has not already been set.
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui
 

Classes in org.apache.myfaces.trinidadinternal.ui that implement MutableUINode
 class BaseMutableUINode
          Root implementation for storing a mutable node of a UIX Components UI tree.
 

Methods in org.apache.myfaces.trinidadinternal.ui with parameters of type MutableUINode
static void NodeUtils.addIndexedChildren(MutableUINode parentNode, java.util.Iterator<UINode> indexedChildren)
          Appends the Iterator of UINodes to the end of the list of indexed children on the parentNode.
static void NodeUtils.addIndexedChildren(MutableUINode parentNode, UINode[] indexedChildren)
          Appends the array of UINodes to the end of the list of indexed children on the parentNode.
static void NodeUtils.setTextAndAccessKey(MutableUINode node, java.lang.String embeddedText)
          Utility method to set the text as well as any embedded access key on the node.
static void NodeUtils.setTextAndAccessKey(MutableUINode node, java.lang.String embeddedText, AttributeKey textAttributeKey)
          Utility method to set the text as well as any embedded access key on the node.
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.beans
 

Classes in org.apache.myfaces.trinidadinternal.ui.beans that implement MutableUINode
 class BaseWebBean
          The BaseWebBean class is the root superclass for all UIX WebBeans.
 class MarlinBean
          Subclass of BaseWebBean that places its subclasses inside the UIX namespace.
 

Methods in org.apache.myfaces.trinidadinternal.ui.beans with parameters of type MutableUINode
static java.lang.String BaseWebBean.getDirection(MutableUINode node)
          Gets the reading direction of the bean.
static java.lang.String BaseWebBean.getID(MutableUINode node)
          Returns the page-wide unique client ID of this node.
static java.lang.String BaseWebBean.getLanguage(MutableUINode node)
          Gets the language of the bean.
static java.lang.String BaseWebBean.getOnClick(MutableUINode node)
          Gets an onclick Javascript handler.
static java.lang.String BaseWebBean.getOnDoubleClick(MutableUINode node)
          Gets an ondoubleclick Javascript handler.
static java.lang.String BaseWebBean.getOnKeyDown(MutableUINode node)
          Gets an onkeydown Javascript handler.
static java.lang.String BaseWebBean.getOnKeyPress(MutableUINode node)
          Gets an onkeypress Javascript handler.
static java.lang.String BaseWebBean.getOnKeyUp(MutableUINode node)
          Gets an onkeyup Javascript handler.
static java.lang.String BaseWebBean.getOnMouseDown(MutableUINode node)
          Gets an onmousedown Javascript handler.
static java.lang.String BaseWebBean.getOnMouseMove(MutableUINode node)
          Gets an onmousemove Javascript handler.
static java.lang.String BaseWebBean.getOnMouseOut(MutableUINode node)
          Gets an onmouseout Javascript handler.
static java.lang.String BaseWebBean.getOnMouseOver(MutableUINode node)
          Gets an onmouseover Javascript handler.
static java.lang.String BaseWebBean.getOnMouseUp(MutableUINode node)
          Gets an onmouseup Javascript handler.
static java.lang.String BaseWebBean.getShortDesc(MutableUINode node)
          Gets the short description of the bean.
static java.lang.String BaseWebBean.getStyleClass(MutableUINode node)
          Gets the CSS style class of the bean.
static boolean BaseWebBean.isRendered(MutableUINode node)
          Sets whether the bean is rendered.
static void BaseWebBean.setDirection(MutableUINode node, java.lang.String newDirection)
          Sets the reading direction of the bean.
static void BaseWebBean.setID(MutableUINode node, java.lang.String newID)
          Sets the page-wide unique client ID of this node.
static void BaseWebBean.setLanguage(MutableUINode node, java.lang.String newLanguage)
          Sets the language of the bean.
static void BaseWebBean.setOnClick(MutableUINode node, java.lang.String newOnClick)
          Sets an onclick Javascript handler.
static void BaseWebBean.setOnDoubleClick(MutableUINode node, java.lang.String newOnDoubleClick)
          Sets an ondoubleclick Javascript handler.
static void BaseWebBean.setOnKeyDown(MutableUINode node, java.lang.String newOnKeyDown)
          Sets an onkeydown Javascript handler.
static void BaseWebBean.setOnKeyPress(MutableUINode node, java.lang.String newOnKeyPress)
          Sets an onkeypress Javascript handler.
static void BaseWebBean.setOnKeyUp(MutableUINode node, java.lang.String newOnKeyUp)
          Sets an onkeyup Javascript handler.
static void BaseWebBean.setOnMouseDown(MutableUINode node, java.lang.String newOnMouseDown)
          Sets an onmousedown Javascript handler.
static void BaseWebBean.setOnMouseMove(MutableUINode node, java.lang.String newOnMouseMove)
          Sets an onmousemove Javascript handler.
static void BaseWebBean.setOnMouseOut(MutableUINode node, java.lang.String newOnMouseOut)
          Sets an onmouseout Javascript handler.
static void BaseWebBean.setOnMouseOver(MutableUINode node, java.lang.String newOnMouseOver)
          Sets an onmouseover Javascript handler.
static void BaseWebBean.setOnMouseUp(MutableUINode node, java.lang.String newOnMouseUp)
          Sets an onmouseup Javascript handler.
static void BaseWebBean.setRendered(MutableUINode node, boolean rendered)
          Sets whether the bean is rendered.
static void BaseWebBean.setShortDesc(MutableUINode node, java.lang.String newShortDesc)
          Sets the short description of the bean.
static void BaseWebBean.setStyleClass(MutableUINode node, java.lang.String newStyleClass)
          Sets the CSS style class of the bean.
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.beans.message
 

Subinterfaces of MutableUINode in org.apache.myfaces.trinidadinternal.ui.beans.message
 interface MessageBean
          Interface implemented by all components that support messaging.
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.collection
 

Methods in org.apache.myfaces.trinidadinternal.ui.collection that return MutableUINode
protected  MutableUINode UINodeUINodeList.getMutableUINode()
           
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.composite
 

Classes in org.apache.myfaces.trinidadinternal.ui.composite that implement MutableUINode
 class ContextPropertyUINode
          Node that sets a property on the context.
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.html
 

Classes in org.apache.myfaces.trinidadinternal.ui.html that implement MutableUINode
 class HTMLWebBean
          HTMLWebBean simplifies adding raw HTML to output.
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.laf.base
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base with parameters of type MutableUINode
static void BaseLafUtils.setRootBoundValue(MutableUINode node, AttributeKey attrKey)
          Convenience function for creating and setting a RootAttributeBoundValue that points to the root of the local rendering node stack with the same key as the attribute will be registered under.
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.laf.base.pda
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.pda that return MutableUINode
protected  MutableUINode ProcessChoiceBarRenderer.createSingleItemSubmitButton(UIXRenderingContext context, boolean isBack, java.lang.Object buttonText, java.lang.String onClickJS)
           
protected  MutableUINode NavigationBarRenderer.createSingleItemSubmitButton(UIXRenderingContext context, boolean isBack, java.lang.Object buttonText, java.lang.String onClickJS)
           
protected  MutableUINode NavigationBarRenderer.createSingleItemURLButton(UIXRenderingContext context, boolean isBack, java.lang.Object buttonText, java.lang.String destinationURL)
           
 

Uses of MutableUINode in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml
 

Classes in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml that implement MutableUINode
 class RepeatIdContextPropertyUINode
          Node that extends ContextPropertyUINode and renders a suffix on its 'id' and 'for' attributes.
 

Fields in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml declared as MutableUINode
static MutableUINode FormElementRenderer.PDA_SPACE
          Deprecated.  
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml that return MutableUINode
protected  MutableUINode ProcessChoiceBarRenderer.createSingleItemSubmitButton(boolean isBack, java.lang.Object buttonText, java.lang.Object buttonAccessKey, java.lang.Object destination, java.lang.String onClickJS)
           
protected  MutableUINode NavigationBarRenderer.createSingleItemSubmitButton(UIXRenderingContext context, boolean isBack, java.lang.Object buttonText, java.lang.Object buttonAccessKey, java.lang.String onClickJS)
           
protected  MutableUINode NavigationBarRenderer.createSingleItemURLButton(UIXRenderingContext context, boolean isBack, java.lang.Object buttonText, java.lang.Object buttonAccessKey, java.lang.String destinationURL)
           
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml with parameters of type MutableUINode
static void XhtmlLafUtils.copyAttr(UIXRenderingContext context, UINode sourceNode, AttributeKey attrKey, MutableUINode destNode)
          Copies an attribute from a source node to a destination UINode
 



Copyright © 2001-2007 Apache Software Foundation. All Rights Reserved.