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

Packages that use UINode
org.apache.myfaces.trinidadinternal.renderkit.htmlBasic   
org.apache.myfaces.trinidadinternal.ui   
org.apache.myfaces.trinidadinternal.ui.action   
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.desktop   
org.apache.myfaces.trinidadinternal.ui.laf.base.pda   
org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml   
org.apache.myfaces.trinidadinternal.ui.laf.simple.desktop   
org.apache.myfaces.trinidadinternal.ui.path   
org.apache.myfaces.trinidadinternal.uinode   
 

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

Methods in org.apache.myfaces.trinidadinternal.renderkit.htmlBasic that return UINode
protected abstract  UINode UINodeRenderer.createUINode(javax.faces.context.FacesContext context, javax.faces.component.UIComponent component)
           
 

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

Subinterfaces of UINode in org.apache.myfaces.trinidadinternal.ui
 interface MutableUINode
          MutableUINode extends UINode to add mutability.
 

Classes in org.apache.myfaces.trinidadinternal.ui that implement UINode
 class AbstractTextNode
          Abstract Node implementation for text.
 class BaseMutableUINode
          Root implementation for storing a mutable node of a UIX Components UI tree.
 class BaseUINode
          Root implementation for storing a node of a UIX Components UI tree.
 class TextNode
          Node implementation for text.
 class UINodeProxy
           
 

Methods in org.apache.myfaces.trinidadinternal.ui that return UINode
 UINode LogicalNodeRenderingContext.getAncestorNode(int index)
          Returns an ancestor of the node currently being processed.
 UINode UIXRenderingContext.getAncestorNode(int index)
          Returns a logical ancestor of the node currently being processed.
protected  UINode[] BaseUINode.getChildArray()
          Returns the child array used to retrieve indexed children from the node.
 UINode AbstractTextNode.getIndexedChild(UIXRenderingContext context, int index)
          Returns the indexed child at this index; since TextNodes contain no children, always throws an exception.
 UINode UINodeProxy.getIndexedChild(UIXRenderingContext context, int childIndex)
          Returns the indexed child at the specified index.
 UINode BaseUINode.getIndexedChild(UIXRenderingContext context, int childIndex)
          Returns the indexed child at the specified index.
 UINode UINode.getIndexedChild(UIXRenderingContext context, int childIndex)
          Returns the indexed child at the specified index.
 UINode AbstractTextNode.getNamedChild(UIXRenderingContext context, java.lang.String childName)
          Returns null.
 UINode UINodeProxy.getNamedChild(UIXRenderingContext context, java.lang.String childName)
          Returns the child identified by childName.
 UINode BaseUINode.getNamedChild(UIXRenderingContext context, java.lang.String childName)
          Returns the child identified by childName.
 UINode UINode.getNamedChild(UIXRenderingContext context, java.lang.String childName)
          Returns the child identified by childName.
protected  UINode BaseRenderer.getNextRenderedChildNode(UIXRenderingContext context, UINode parentNode, int afterChildIndex)
          Returns the next child UINode that will be rendered after the passed in index.
 UINode RenderedNodeRenderingContext.getRenderedAncestorNode(int index)
          Returns an ancestor of the node currently being processed.
 UINode UIXRenderingContext.getRenderedAncestorNode(int index)
          Returns an ancestor of the node currently being processed.
protected  UINode BaseUINode.getRenderedUINode(UIXRenderingContext context)
          Returns the UINode to render and to use to dtermine the renderer.
static UINode NodeUtils.getRootUINode(UIXRenderingContext context)
          Returns the root UINode in the specified RenderingContext
static UINode NodeUtils.getStackRootUINode(UIXRenderingContext context)
          Returns the root UINode in a stack of RenderingContexts
protected abstract  UINode UINodeProxy.getUINode()
           
 UINode MutableUINode.removeIndexedChild(int childIndex)
          Removes an indexed child from the node.
 UINode BaseMutableUINode.removeIndexedChild(int childIndex)
          Removes an indexed child from the node.
 

Methods in org.apache.myfaces.trinidadinternal.ui with parameters of type UINode
 void MutableUINode.addIndexedChild(int childIndex, UINode child)
          Inserts an indexed child to the node.
 void BaseMutableUINode.addIndexedChild(int childIndex, UINode child)
          Adds an indexed child to the node.
 void MutableUINode.addIndexedChild(UINode child)
          Inserts an indexed child to the node, placing after all other nodes.
 void BaseMutableUINode.addIndexedChild(UINode child)
          Convenience method for appending an indexed child.
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.
 void BaseMutableUINode.addIndexedChildren(UINode[] indexedChildren)
          Convenience method for appending an array of indexed children.
protected  java.lang.String ElementRenderer.getElementName(UIXRenderingContext context, UINode node)
          Called to retrieve the element name to render.
protected  int BaseRenderer.getNextRenderedChildIndex(UIXRenderingContext context, UINode parentNode, int afterChildIndex)
           
protected  UINode BaseRenderer.getNextRenderedChildNode(UIXRenderingContext context, UINode parentNode, int afterChildIndex)
          Returns the next child UINode that will be rendered after the passed in index.
 NodeRole RoledRenderer.getNodeRole(UIXRenderingContext context, UINode node)
          Return the role of this renderer.
static java.lang.Object NodeUtils.getPreorderDescendentAttributeValue(UIXRenderingContext context, UINode startNode, AttributeKey attrKey)
          Returns the first attribute value for the specified attrName, found be performing a preorder (depth-first) search of the startNode and its children.
 Renderer RendererManager.getRenderer(UINode node)
          Utility method for retrieving a renderer for a UINode.
protected  Renderer BaseUINode.getRenderer(UIXRenderingContext context, UINode dataNode)
          Returns the Renderer used to render this UINode.
static javax.faces.component.UIComponent NodeUtils.getUIComponent(UIXRenderingContext context, UINode node)
          Return the UIComponent for a node.
protected  int BaseRenderer.getVisibleIndexedChildCount(UIXRenderingContext context, UINode node)
          Convenience function to return the number of non-skipped indexed children.
static boolean NodeUtils.isRenderedAncestor(UIXRenderingContext context, UINode ancestorNode)
          Returns true if the specified UINode is a rendered ancestor of the current rendering UINode
protected  void ElementRenderer.postrender(UIXRenderingContext context, UINode node)
          Called to render the portion after the contents.
protected  void BaseRenderer.postrender(UIXRenderingContext context, UINode node)
          Called to render the portion after the contents.
protected  void ElementRenderer.prerender(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
protected  void BaseRenderer.prerender(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
 void LogicalNodeRenderingContext.pushChild(UINode child, java.lang.String childName, int childIndex)
          Adds the UINode about to be rendered to the rendering stack.
 void UIXRenderingContext.pushChild(UINode child, java.lang.String childName, int childIndex)
          Adds the logical UINode to render to the logical stack.
 void LogicalNodeRenderingContext.pushRenderedChild(UIXRenderingContext currentContext, UINode child)
           
 void RenderedNodeRenderingContext.pushRenderedChild(UIXRenderingContext currentContext, UINode renderedChild)
           
 void UIXRenderingContext.pushRenderedChild(UIXRenderingContext currentContext, UINode renderedChild)
          Adds the UINode to actually use to render to the rendered UINode stack.
 void AbstractTextNode.render(UIXRenderingContext context, UINode node)
           
 void UINodeProxy.render(UIXRenderingContext context, UINode node)
           
 void BaseUINode.render(UIXRenderingContext context, UINode dataNode)
          Renders this UINode.
 void UINode.render(UIXRenderingContext context, UINode node)
           
 void Renderer.render(UIXRenderingContext context, UINode node)
          Render a UINode in a RenderingContext.
 void BaseRenderer.render(UIXRenderingContext context, UINode node)
          Render a UINode in a RenderingContext.
protected  void ElementRenderer.renderAttribute(UIXRenderingContext context, UINode node, AttributeKey key, java.lang.Object defaultValue)
          Renders a single attribute, getting the value from the UINode, and substituting a default value if the node doesn't have that attribute set.
protected  void ElementRenderer.renderAttribute(UIXRenderingContext context, UINode node, java.lang.String name, AttributeKey valueKey)
          Renders a single attribute, getting the value from the UINode.
protected  void ElementRenderer.renderAttribute(UIXRenderingContext context, UINode node, java.lang.String name, AttributeKey valueKey, java.lang.Object defaultValue)
          Renders a single attribute, getting the value from the UINode, and substituting a default value if the node doesn't have that attribute set.
protected  void ElementRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders attributes of the current node.
protected  void BaseRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
          Called to render between each set of rendered indexed children.
protected  void BaseRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node, int nextIndex)
          Called to render between each set of rendered indexed children.
protected  void BaseRenderer.renderChild(UIXRenderingContext context, UINode child)
          Called to render a child.
protected  void BaseRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void BaseRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int childIndex)
          Called to render an indexed child.
protected  void BaseRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
          Called each time an indexed child needs to be rendered.
protected  void BaseRenderer.renderNamedChild(UIXRenderingContext context, UINode node, java.lang.String childName)
          Called to render a named child.
protected  void BaseRenderer.renderNamedChild(UIXRenderingContext context, UINode node, UINode child, java.lang.String childName)
          Called to render a named child.
 void MutableUINode.replaceIndexedChild(int childIndex, UINode child)
          Replaces a single child.
 void BaseMutableUINode.replaceIndexedChild(int childIndex, UINode child)
          Replaces a single child.
 void MutableUINode.setNamedChild(java.lang.String childName, UINode namedChild)
          Sets a named child on the node.
 void BaseMutableUINode.setNamedChild(java.lang.String childName, UINode namedChild)
          Sets a named child on the node.
protected  boolean BaseRenderer.skipChild(UIXRenderingContext context, UINode node, UINode child)
          Called to determine if a specific child should be skipped.
static boolean BaseRenderer.skipNode(UIXRenderingContext context, UINode node)
          Determines if a specific UINode should be skipped.
 

Method parameters in org.apache.myfaces.trinidadinternal.ui with type arguments of type UINode
 void BaseMutableUINode.addIndexedChildren(java.util.Iterator<UINode> indexedChildren)
          Convenience method for appending an enumeration of indexed children.
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.
 

Uses of UINode in org.apache.myfaces.trinidadinternal.ui.action
 

Methods in org.apache.myfaces.trinidadinternal.ui.action with parameters of type UINode
protected  java.lang.String FireAction.getChangeScript(UIXRenderingContext context, UINode node, java.lang.String returnScript)
           
protected  java.lang.String FirePartialAction.getChangeScript(UIXRenderingContext context, UINode node, java.lang.String returnScript)
           
protected  java.lang.String FireAction.getChangeScript(UIXRenderingContext context, UINode node, java.lang.String returnScript, java.lang.String startScript, java.lang.String endScript, java.lang.String extraKey, java.lang.String extraValue)
           
protected static java.lang.String FireAction.getDestination(UIXRenderingContext context, UINode node)
           
protected  java.lang.String FireAction.getFormName(UIXRenderingContext context, UINode node)
           
 Parameter[] FireAction.getParameters(UIXRenderingContext context, UINode node)
           
 Parameter[] FirePartialAction.getParameters(UIXRenderingContext context, UINode node)
           
 Parameter[] ClientAction.getParameters(UIXRenderingContext context, UINode node)
          Returns an array of all parameters to this ClientAction.
static ClientAction ClientActionUtils.getPrimaryClientAction(UIXRenderingContext context, UINode node)
          Gets the ClientAction associated with this UINode if there is one.
 java.lang.String FireAction.getScript(UIXRenderingContext context, UINode node, java.lang.Boolean returnVal)
          Implementation of ClientAction.getScript().
abstract  java.lang.String ClientAction.getScript(UIXRenderingContext context, UINode node, java.lang.Boolean returnVal)
          Returns the script which implements this ClientAction.
protected  java.lang.String FireAction.getSource(UIXRenderingContext context, UINode node)
           
protected  java.lang.String FireAction.getSubmitScript(UIXRenderingContext context, UINode node, java.lang.String returnScript)
           
protected  java.lang.String FirePartialAction.getSubmitScript(UIXRenderingContext context, UINode node, java.lang.String returnScript)
          Implementation of FireAction.getSubmitScript().
 boolean FirePartialAction.isTriggerRequired(UIXRenderingContext context, UINode node)
          Override of ClientAction.isTriggerRequired()
 boolean ClientAction.isTriggerRequired(UIXRenderingContext context, UINode node)
          Tests whether the ClientAction should be invoked using an explicit trigger such as a button or link.
 boolean FireAction.renderAsEvent(UIXRenderingContext context, UINode node)
          Override of ClientAction.renderAsEvent().
 boolean FirePartialAction.renderAsEvent(UIXRenderingContext context, UINode node)
          Override of FireAction.renderAsEvent().
 boolean ClientAction.renderAsEvent(UIXRenderingContext context, UINode node)
          Returns true if it's OK to render this ClientAction's script as an event (e.g. onClick, onChange, etc.).
 void FirePartialAction.renderTrigger(UIXRenderingContext context, UINode node)
          Override of ClientAction.renderTrigger().
 void ClientAction.renderTrigger(UIXRenderingContext context, UINode node)
          Renders a trigger (a link or button) which can be used to invoke the ClientAction.
 void ClientAction.renderTrigger(UIXRenderingContext context, UINode node, java.lang.Object text)
          Renders a trigger (a link or button) which can be used to invoke the ClientAction.
 void FirePartialAction.renderTrigger(UIXRenderingContext context, UINode node, java.lang.Object text, java.lang.Object accessKey)
          Override of ClientAction.renderTrigger().
 void FireAction.writeDependencies(UIXRenderingContext context, UINode node)
          Override of ClientAction.writeDependencies().
 void FirePartialAction.writeDependencies(UIXRenderingContext context, UINode node)
          Override of ClientAction.writeDependencies().
 void ClientAction.writeDependencies(UIXRenderingContext context, UINode node)
          Called by the UIX Component rendering engine before getScript in order to give the ClientAction the opportunity to generate its client-side dependencies before getScript and in a more suitable output scope.
 

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

Classes in org.apache.myfaces.trinidadinternal.ui.beans that implement UINode
 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 UINode
protected static boolean MarlinBean.isEqualMarlinName(UINode node, java.lang.String localName)
          Returns true if the specified node has the same UIX name as the name passed in.
 

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

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

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

Methods in org.apache.myfaces.trinidadinternal.ui.collection that return UINode
protected abstract  UINode UINodeAttributeMap.getUINode(UIXRenderingContext context)
           
protected abstract  UINode UINodeUINodeList.getUINode(UIXRenderingContext context)
           
 UINode UnmodifiableCompoundNodeList.getUINode(UIXRenderingContext context, int index)
           
 UINode ArrayUINodeList.getUINode(UIXRenderingContext context, int index)
           
 UINode UINodeListProxy.getUINode(UIXRenderingContext context, int index)
           
 UINode DataObjectListNodeList.getUINode(UIXRenderingContext context, int index)
           
 UINode UINodeUINodeList.getUINode(UIXRenderingContext context, int index)
           
 UINode UINodeList.getUINode(UIXRenderingContext context, int index)
          Returns the UINode at the specifed index in the UINodeList, given the specified RenderingContext.
 UINode UnmodifiableCompoundNodeList.removeUINode(int index)
           
 UINode ArrayUINodeList.removeUINode(int index)
           
 UINode UINodeListProxy.removeUINode(int index)
           
 UINode UINodeUINodeList.removeUINode(int index)
           
 UINode UINodeList.removeUINode(int index)
          Removes and returns UINode at the specifed index.
 UINode UnmodifiableCompoundNodeList.setUINode(int index, UINode node)
           
 UINode ArrayUINodeList.setUINode(int index, UINode node)
           
 UINode UINodeListProxy.setUINode(int index, UINode node)
           
 UINode UINodeUINodeList.setUINode(int index, UINode node)
           
 UINode UINodeList.setUINode(int index, UINode node)
          Replaces the UINode at the specified index with the new UINode value, returning the old value.
 

Methods in org.apache.myfaces.trinidadinternal.ui.collection with parameters of type UINode
 void UnmodifiableCompoundNodeList.addUINode(int index, UINode node)
           
 void ArrayUINodeList.addUINode(int index, UINode node)
           
 void UINodeListProxy.addUINode(int index, UINode node)
           
 void UINodeUINodeList.addUINode(int index, UINode node)
           
 void UINodeList.addUINode(int index, UINode node)
          Inserts the spacified UINode into the UINodeList at the specified index
 void UnmodifiableCompoundNodeList.addUINode(UINode node)
           
 void ArrayUINodeList.addUINode(UINode node)
           
 void UINodeListProxy.addUINode(UINode node)
           
 void UINodeUINodeList.addUINode(UINode node)
           
 void UINodeList.addUINode(UINode node)
          Appends the specified UINode to the end of the UINodeList.
 UINode UnmodifiableCompoundNodeList.setUINode(int index, UINode node)
           
 UINode ArrayUINodeList.setUINode(int index, UINode node)
           
 UINode UINodeListProxy.setUINode(int index, UINode node)
           
 UINode UINodeUINodeList.setUINode(int index, UINode node)
           
 UINode UINodeList.setUINode(int index, UINode node)
          Replaces the UINode at the specified index with the new UINode value, returning the old value.
 

Constructors in org.apache.myfaces.trinidadinternal.ui.collection with parameters of type UINode
DataObjectListNodeList(UINode baseNode, BoundValue boundData)
          Creates a DataObjectListNodeList wrapping an single UINode.
DataObjectListNodeList(UINode baseNode, DataObjectList childData)
          Creates a DataObjectListNodeList wrapping a single node and pulling its data from an explicitly set DataObjectList.
 

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

Classes in org.apache.myfaces.trinidadinternal.ui.composite that implement UINode
 class ContextPoppingUINode
          Renderer used by composite UINode renderers to render content.
 class ContextPropertyUINode
          Node that sets a property on the context.
 

Methods in org.apache.myfaces.trinidadinternal.ui.composite that return UINode
 UINode ContextPoppingUINode.getIndexedChild(UIXRenderingContext context, int childIndex)
           
protected  UINode ContextPoppingUINode.getPoppedNode(UIXRenderingContext context)
           
protected abstract  UINode UINodeRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode RootAttributeMap.getUINode(UIXRenderingContext context)
           
protected  UINode RootUINodeList.getUINode(UIXRenderingContext context)
           
 UINode RootUINodeList.getUINode(UIXRenderingContext context, int index)
           
 

Methods in org.apache.myfaces.trinidadinternal.ui.composite with parameters of type UINode
protected  Renderer ContextPoppingUINode.getRenderer(UIXRenderingContext context, UINode dataNode)
           
protected  Renderer ContextPropertyUINode.getRenderer(UIXRenderingContext context, UINode dataNode)
           
protected abstract  UINode UINodeRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  void UINodeRenderer.postrender(UIXRenderingContext context, UINode node)
          Called to render the portion after the contents.
protected  void UINodeRenderer.prerender(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
 void UINodeRenderer.render(UIXRenderingContext context, UINode node)
          Render a UINode in a RenderingContext.
static void UINodeRenderer.renderInCompositeContext(UIXRenderingContext context, UINode node, UINode renderingUINode)
           
protected  void UINodeRenderer.renderWithNode(UIXRenderingContext context, UINode node, UINode renderingUINode)
           
 

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

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

Methods in org.apache.myfaces.trinidadinternal.ui.html with parameters of type UINode
protected  java.lang.String HTMLElementRenderer.getElementName(UIXRenderingContext context, UINode node)
          Called to retrieve the element name to render.
 Renderer HTMLWebBean.getRenderer(UIXRenderingContext context, UINode dataNode)
          Returns the renderer to use on the bean.
protected  void HTMLElementRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders all attributes of the current node.
 

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

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base that return UINode
static UINode BaseLafUtils.getLocalNamedChild(UIXRenderingContext context, UINode node, java.lang.String childName)
          Returns the value of the specified named child from the local Renderer stack frame if possible, or from the node, and caches the result
protected  UINode BaseLafRenderer.getNamedChild(UIXRenderingContext context, UINode node, java.lang.String name)
           
static UINode BaseLafUtils.getRenderedAncestorByName(UIXRenderingContext context, UINode child, java.lang.String namespaceURI, java.lang.String name)
          Returns the nearest rendered ancestor of the specified child node which has the desired local name.
static UINode NodeRoleUtils.getStructuralAncestor(UIXRenderingContext context)
          Return the first ancestral node that is "structural" - that is, skip over any nodes that just change state, like DataScopeBean or SwitcherBean.
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base with parameters of type UINode
protected static java.lang.Object BaseLafRenderer.getAttributeValue(UIXRenderingContext context, UINode node, AttributeKey attributeKey, java.lang.Object defaultValue)
          Returns the value of an attribute for this node, using the default value, if no value exists for the attribute on this node.
protected static boolean BaseLafRenderer.getBooleanAttributeValue(UIXRenderingContext context, UINode node, AttributeKey attributeKey, boolean defaultValue)
           
protected static boolean BaseLafRenderer.getBooleanAttributeValue(UIXRenderingContext context, UINode node, AttributeKey attributeKey, java.lang.Boolean defaultValue)
           
static char BaseLafUtils.getCharacterAttr(UIXRenderingContext context, UINode node, AttributeKey key)
           
protected static DataObject BaseLafRenderer.getDataObjectAttributeValue(UIXRenderingContext context, UINode node, AttributeKey attributeKey)
           
protected static DataObjectList BaseLafRenderer.getDataObjectListAttributeValue(UIXRenderingContext context, UINode node, AttributeKey attributeKey)
           
protected  java.lang.String ChildRenderer.getElementName(UIXRenderingContext context, UINode node)
          Override to not render any surrounding element tag
protected  java.lang.Object BaseLafRenderer.getID(UIXRenderingContext context, UINode node)
           
protected static int BaseLafRenderer.getIntAttributeValue(UIXRenderingContext context, UINode node, AttributeKey attributeKey, int defaultValue)
           
static java.lang.Object BaseLafUtils.getLocalAttribute(UIXRenderingContext context, UINode node, AttributeKey attrKey)
          Returns the value of the specified attribute from the local Renderer stack frame if possible, or from the node, and caches the result
static boolean BaseLafUtils.getLocalBooleanAttribute(UIXRenderingContext context, UINode node, AttributeKey attrKey, boolean defaultValue)
          Returns the value of the specified Boolean attribute from the local Renderer stack frame if possible, or from the node, and caches the result
static UINode BaseLafUtils.getLocalNamedChild(UIXRenderingContext context, UINode node, java.lang.String childName)
          Returns the value of the specified named child from the local Renderer stack frame if possible, or from the node, and caches the result
static java.lang.String BaseLafUtils.getLocalTextAttribute(UIXRenderingContext context, UINode node, AttributeKey attrKey)
          Returns the value of the specified String attribute from the local Renderer stack frame if possible, or from the node, and caches the result
protected  UINode BaseLafRenderer.getNamedChild(UIXRenderingContext context, UINode node, java.lang.String name)
           
protected  java.lang.Object BaseLafRenderer.getNodeName(UIXRenderingContext context, UINode node)
          Get the name for a node.
 NodeRole SwitcherRenderer.getNodeRole(UIXRenderingContext context, UINode node)
           
static UINode BaseLafUtils.getRenderedAncestorByName(UIXRenderingContext context, UINode child, java.lang.String namespaceURI, java.lang.String name)
          Returns the nearest rendered ancestor of the specified child node which has the desired local name.
protected  java.lang.Object BaseLafRenderer.getShortDesc(UIXRenderingContext context, UINode node)
           
static java.lang.String BaseLafUtils.getStringAttributeValue(UIXRenderingContext context, UINode node, AttributeKey key)
          Returns the attribute as a String
static NodeRole NodeRoleUtils.getStructuralRole(UIXRenderingContext context, UINode node)
          Returns the structural role of the node; if it isn't structural, returns the role of the first structural child.
protected  java.lang.Object BaseLafRenderer.getTransformedName(UIXRenderingContext context, UINode node)
          Returns the name of the node, transformed for the given context
static javax.faces.component.UIComponent BaseLafRenderer.getUIComponent(UIXRenderingContext context, UINode node)
          Returns UIComponent for a given UINode.
protected  boolean BaseLafRenderer.hasNamedChild(UIXRenderingContext context, UINode node, java.lang.String name)
           
protected  boolean BaseLafRenderer.hasRenderedNamedChild(UIXRenderingContext context, UINode node, java.lang.String name)
           
protected  boolean BaseLafRenderer.isDisabled(UIXRenderingContext context, UINode node)
           
static boolean BaseLafRenderer.isEqualMarlinName(UINode node, java.lang.String localName)
          Returns true if the specified node has the same Marlin name as the name passed in.
protected static boolean BaseLafRenderer.isSelected(UIXRenderingContext context, UINode node)
          Returns true if this node is selected.
protected  void RawTextRenderer.postrender(UIXRenderingContext context, UINode node)
          Called to render the portion after the contents.
 void PreAndPostRenderer.postrender(UIXRenderingContext context, UINode node)
           
 void NullRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void RawTextRenderer.prerender(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
 void PreAndPostRenderer.prerender(UIXRenderingContext context, UINode node)
           
 void NullRenderer.prerender(UIXRenderingContext context, UINode node)
           
static void BaseLafUtils.pushAttributeAsRenderingProperty(UIXRenderingContext context, UINode node, AttributeKey attrKey)
          Pushes the attribute value into the rendering context property, storing the old value as a local property to be restored later.
protected static void BaseLafRenderer.pushAttributeAsRenderingProperty(UIXRenderingContext context, UINode node, AttributeKey attrKey)
          Pushes the attribute value into the rendering context property, storing the old value as a local property to be restored later.
static void BaseLafUtils.pushAttributeAsStringRenderingProperty(UIXRenderingContext context, UINode node, AttributeKey attrKey)
          Pushes the attribute value into the rendering context property, as a String, storing the old value as a local property to be restored later.
 void UnsupportedRenderer.render(UIXRenderingContext context, UINode node)
          Render nothing.
 void NullRenderer.render(UIXRenderingContext context, UINode node)
          Render nothing.
protected  void RawTextRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
          Called to render between each set of rendered indexed children.
protected  void SwitcherRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void TextRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void BaseLafRenderer.renderID(UIXRenderingContext context, UINode node)
          Renders the id of the UINode
protected  void BaseLafRenderer.renderText(UIXRenderingContext context, UINode node)
          Render the text stored as a text attribute.
 boolean TreeWalker.walkChildren(UIXRenderingContext context, UINode node, java.lang.Object value, Path path)
          Callback method that will be called once for every node to determine if the children of that node should be walked to.
 java.lang.Object TreeWalker.walkNode(UIXRenderingContext context, UINode node, java.lang.Object previousValue, Path path)
          Callback method that will be called once for every node the tree walker walks.
static java.lang.Object TreeWalkerUtils.walkTree(UIXRenderingContext context, UINode ancestor, TreeWalker walker)
          Walks a tree using a TreeWalker.
static java.lang.Object TreeWalkerUtils.walkTree(UIXRenderingContext context, UINode ancestor, TreeWalker walker, PathImpl path)
          Walks a tree using a TreeWalker.
static java.lang.Object TreeWalkerUtils.walkTree(UIXRenderingContext context, UINode ancestor, TreeWalker walker, PathImpl path, boolean renderedOnly)
          Walks a tree using a TreeWalker.
 

Uses of UINode in org.apache.myfaces.trinidadinternal.ui.laf.base.desktop
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.desktop that return UINode
protected  UINode TreeRenderer.getIcon()
           
protected  UINode NavigationTreeRenderer.getIcon()
           
protected  UINode PrintablePageLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode PageLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode PageNavigationTreeRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode ApplicationSwitcherRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode MenuListRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuListRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode TreeRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode TabBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuTabsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.desktop with parameters of type UINode
protected  boolean ButtonRenderer.doRenderImageContent(UIXRenderingContext context, UINode node)
          Tests whether the button should be rendered as an image.
protected  int BorderLayoutRenderer.getDefaultMarginIndent(UIXRenderingContext context, UINode node)
          Returns the default marign indent to use if no CELL_PADDING_ATTR is specified
protected  java.lang.Object GlobalButtonRenderer.getDestination(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object IconButtonRenderer.getDestination(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ResetButtonRenderer.getDestination(UIXRenderingContext context, UINode node)
          Always have a link so that we are keyboard navigable in IE.
protected  java.lang.String GlobalButtonRenderer.getDestinationAttr(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ProductBrandingRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String PageHeaderLayoutRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ProcessingRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String IconButtonRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String PanelTabbedRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String SubTabBarRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ContentFooterRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String SideBarRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ColorPaletteRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String FooterRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String TreeRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String MessageBoxRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String GlobalHeaderRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String TabBarRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected static java.lang.String PanelTabbedRenderer.getEncodedPartialTargets(UIXRenderingContext context, UINode node, java.lang.String id)
           
protected  java.lang.String SubmitButtonRenderer.getFunctionCall(UIXRenderingContext context, UINode node, java.lang.String formName)
          Returns the Javascript function call to return for this button.
protected  java.lang.String ResetButtonRenderer.getFunctionCall(UIXRenderingContext context, UINode node, java.lang.String formName)
           
protected  int ColorPaletteRenderer.getHeight(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy ApplicationSwitcherRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy MenuListRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy PageMenuListRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy TabBarRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy PageMenuTabsRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ApplicationSwitcherRenderer.getNodeName(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object GlobalButtonRenderer.getOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ColorPaletteRenderer.getOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ButtonRenderer.getOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ResetButtonRenderer.getOnClick(UIXRenderingContext context, UINode node)
          Show the modal dialog on click.
protected  java.lang.Object ColorPaletteRenderer.getOnColorSelect(UIXRenderingContext context, UINode node)
           
protected  UINode PrintablePageLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode PageLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ApplicationSwitcherRenderer.getSelectedValue(UIXRenderingContext context, UINode node)
          Returns the value associated with the selected value attribute
protected  java.lang.String ButtonRenderer.getServerStyleName(UIXRenderingContext context, UINode node, boolean disabled)
          Returns the name of the server-side style for styling button text.
protected  java.lang.Object IconButtonRenderer.getSource(UIXRenderingContext context, UINode node)
           
protected  UINode PageNavigationTreeRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode ApplicationSwitcherRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode MenuListRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuListRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode TreeRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode TabBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuTabsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object GlobalButtonRenderer.getStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object SubTabBarRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Returns the StyleClass to use to render this node.
protected  java.lang.Object MessageBoxRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Returns the messageBox's style class.
protected  java.lang.Object GlobalHeaderRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Override of getStyleClass() which forces style class to OraGlobalHeader.
protected  java.lang.Object ButtonRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Override to provide defaults
protected  java.lang.Object TabBarRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Override of getStyleClass() which forces style class to menuTabs.
protected  java.lang.Object ButtonRenderer.getText(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ProductBrandingRenderer.getTextStyle(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ApplicationSwitcherRenderer.getTitle(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy PageNavigationTreeRenderer.getTree(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy TreeRenderer.getTree(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object IconButtonRenderer.getVAlign(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ButtonRenderer.getVAlign(UIXRenderingContext context, UINode node)
           
protected  int ColorPaletteRenderer.getWidth(UIXRenderingContext context, UINode node)
           
protected  boolean HeaderRenderer.hasQuickLinkAnchor(UIXRenderingContext context, UINode node, int headerIndentLevel)
           
protected  boolean GlobalHeaderRenderer.isEmpty(UIXRenderingContext context, UINode node)
          Checks to see whether the globalHeader is empty (contains no indexed children).
protected  boolean PageMenuBarRenderer.isEmpty(UIXRenderingContext context, UINode node)
          Checks to see whether the globalHeader is empty (contains no indexed children).
protected  boolean TabBarRenderer.isRendered(UIXRenderingContext context, UINode stamp)
           
static boolean StyledItemUtils.isSelected(UIXRenderingContext context, UINode styledItemNode)
           
protected static boolean GlobalButtonRenderer.isSelected(UIXRenderingContext context, UINode node)
           
protected  boolean TabBarRenderer.isSelected(UIXRenderingContext context, UINode node, int index)
           
protected  void ApplicationSwitcherRenderer.postrender(UIXRenderingContext context, UINode node)
          Called to render the portion after the contents.
protected  void HeaderRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void MenuListRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void PanelTabbedRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void ContentFooterRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void SideBarRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void FooterRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void SeparatorRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.postrender(UIXRenderingContext context, UINode node)
          No post rendering action required all action is done in renderContent(RenderingContext,UINode)
protected  void TabBarRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ApplicationSwitcherRenderer.prerender(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
protected  void HeaderRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void MenuListRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void PanelTabbedRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ContentFooterRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void SideBarRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void SideNavRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ColorPaletteRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void SeparatorRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.prerender(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.prerender().
protected  void TabBarRenderer.prerender(UIXRenderingContext context, UINode node)
           
 void MessageBoxRenderer.render(UIXRenderingContext context, UINode node)
           
 void ButtonRenderer.render(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.render().
protected  void ButtonRenderer.renderAltContent(UIXRenderingContext context, UINode node)
          Renders alternate content in the event that the button can not or should not be rendered as an image.
protected  void ProcessingRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void IconButtonRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void CellFormatRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders attributes of the current node.
protected  void SubTabBarRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void ContentFooterRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void SideBarRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void FooterRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void SubmitButtonRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          handle case where we don;t have javascript.
protected  void GlobalHeaderRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void TabBarRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
          Override of renderBetweenIndexedChildren() which renders a separator style on the td.
protected  void FooterRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
          Override of renderBetweenIndexedChildren() which renders the separator Icon.
protected  void TabBarRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
          Renders a separator between tabs.
protected  void TabBarRenderer.renderBetweenNodes(UIXRenderingContext context, UINode node)
          Renders a separator between tabs.
protected  void ApplicationSwitcherRenderer.renderButton(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.renderButtonAccessKey(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void ProductBrandingRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void PageHeaderLayoutRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void ProcessingRenderer.renderContent(UIXRenderingContext context, UINode node)
          Render a table, with the first row being the processing icon and the second row being the indexed children.
protected  void ApplicationSwitcherRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void IconButtonRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void MenuListRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void PanelTabbedRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.renderContent(UIXRenderingContext context, UINode node)
          Overrride to render in three passes.
protected  void ColorPaletteRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void TreeRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void MessageBoxRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void PageMenuBarRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void SeparatorRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.renderContent(UIXRenderingContext context, UINode node)
          Override of BaseRender.renderContent().
protected  void TabBarRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderEmptyGlobalHeader(UIXRenderingContext context, UINode node)
          Renders the empty global header
protected  void HeaderRenderer.renderIcon(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.renderID(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.renderImageContent(UIXRenderingContext context, UINode node, ImageProviderResponse response)
          Renders the button as an image using the image specified by the ImageProviderResponse.
protected  void ResetButtonRenderer.renderImageContent(UIXRenderingContext context, UINode node, ImageProviderResponse response)
          This renderes the buttons as image links.
protected  void MenuListRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int childIndex)
           
protected  void SideNavRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int childIndex)
           
protected  void GlobalHeaderRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int index)
           
protected  void SubTabBarRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
           
protected  void TabBarRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
           
protected  void GlobalHeaderRenderer.renderItemStyleAttrs(UIXRenderingContext context, UINode node, int index, boolean selected)
          Renders the style attributes for global header items
protected  boolean PageNavigationPathRenderer.renderLastChild(UIXRenderingContext context, UINode node)
           
protected  boolean BreadCrumbsRenderer.renderLastChild(UIXRenderingContext context, UINode node)
           
protected  boolean NavigationPathRenderer.renderLastChild(UIXRenderingContext context, UINode node)
           
protected  void MenuListRenderer.renderNode(UIXRenderingContext context, UINode node, boolean selected)
           
protected  void TabBarRenderer.renderNode(UIXRenderingContext context, UINode child, boolean selected)
           
protected  void TabBarRenderer.renderNode(UIXRenderingContext context, UINode child, boolean selected, boolean isFirst, boolean isLast, boolean isNextSelected)
           
protected  void PageHeaderLayoutRenderer.renderPageHeaderChild(UIXRenderingContext context, UINode node, UINode globalHeader, boolean hasQuickSearch)
           
protected  void ApplicationSwitcherRenderer.renderPostChoice(UIXRenderingContext context, UINode node)
           
protected  void ApplicationSwitcherRenderer.renderPreChoice(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
protected  void GlobalHeaderRenderer.renderStamp(UIXRenderingContext context, UINode stamp, boolean selected)
           
protected  void TabBarRenderer.renderTabStyleAttrs(UIXRenderingContext context, UINode node, boolean selected, boolean disabled)
          Renders the style attributes for menuTabs items
protected  void ApplicationSwitcherRenderer.selectItemsRenderContent(UIXRenderingContext context, UINode node)
           
protected  boolean PageNavigationTreeRenderer.setInitialPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy tree)
           
protected  boolean TreeRenderer.setInitialPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy tree)
           
protected  boolean NavigationTreeRenderer.setInitialPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy tree)
           
protected  boolean ApplicationSwitcherRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean MenuListRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean PageMenuListRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean TabBarRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean PageMenuTabsRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
static java.lang.Object MessageBoxUtils.sGetMessage(UIXRenderingContext context, UINode node)
           
static boolean MessageBoxUtils.sIsRendered(UIXRenderingContext context, UINode node, boolean allMessages)
           
 

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

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.pda that return UINode
protected  UINode PageHeaderLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode PageLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode GlobalHeaderRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode MenuListRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode TabBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.pda with parameters of type UINode
protected  java.lang.String ContentFooterRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String PanelTabbedRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String GlobalHeaderRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String SubTabBarRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String TabBarRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String MessageBoxRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String StackLayoutRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected static java.lang.String PanelTabbedRenderer.getEncodedPartialTargets(UIXRenderingContext context, UINode node, java.lang.Object id)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy GlobalHeaderRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy MenuListRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy TabBarRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ShowItemRenderer.getPartialChangeScript(UIXRenderingContext context, UINode node)
           
protected  UINode PageHeaderLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode PageLayoutRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode GlobalHeaderRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode MenuListRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode TabBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object LinkRenderer.getStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object GlobalButtonRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Override to return the correct style depending on the state
protected  boolean BorderLayoutRenderer.hasSideNodes(UIXRenderingContext context, UINode node)
           
protected  void HeaderRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void PanelTabbedRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void MenuListRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void TabBarRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void MessageBoxRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void ContentFooterRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void SubmitButtonRenderer.prerender(UIXRenderingContext context, UINode node)
          Returns the StyleClass to use to render this node.
protected  void HeaderRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void PanelTabbedRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ResetButtonRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void MenuListRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void TabBarRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void MessageBoxRenderer.prerender(UIXRenderingContext context, UINode node)
           
 void SubmitButtonRenderer.render(UIXRenderingContext context, UINode node)
           
 void ResetButtonRenderer.render(UIXRenderingContext context, UINode node)
           
 void GlobalHeaderRenderer.render(UIXRenderingContext context, UINode node)
           
protected  void SeparatorRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void CellFormatRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders attributes of the current node.
protected  void GlobalHeaderRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void TabBarRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonBarRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
           
protected  void TabBarRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node, int index)
           
protected  void StackLayoutRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node, int nextIndex)
           
protected  void GlobalHeaderRenderer.renderChild(UIXRenderingContext context, UINode child)
           
protected  void TabBarRenderer.renderChild(UIXRenderingContext context, UINode node)
           
protected  void HeaderRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void PanelTabbedRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.renderContent(UIXRenderingContext context, UINode node)
          Overrride to render in three passes.
protected  void MenuListRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void TabBarRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void MessageBoxRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonBarRenderer.renderDefaultCellAttributes(UIXRenderingContext context, UINode child)
           
protected  void HeaderRenderer.renderIcon(UIXRenderingContext context, UINode node)
           
protected  void SubTabBarRenderer.renderID(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int index)
           
protected  void MenuListRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int childIndex)
           
protected  void TabBarRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int index)
           
protected  void ShowItemRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
           
protected  void SubTabBarRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
           
protected  void StackLayoutRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
           
protected  void MenuListRenderer.renderNode(UIXRenderingContext context, UINode node, boolean selected)
           
protected  void GlobalHeaderRenderer.renderStamp(UIXRenderingContext context, UINode stamp, boolean selected)
           
protected  void TabBarRenderer.renderStamp(UIXRenderingContext context, UINode stamp, boolean selected)
           
protected  boolean GlobalHeaderRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean MenuListRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean TabBarRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
 

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

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

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml that return UINode
static UINode ProcessUtils.createSubmitButton(UIXRenderingContext context, java.lang.Object buttonText, java.lang.Object buttonAccessKey, java.lang.String buttonID, java.lang.String formName, boolean validate, java.lang.String eventKey, java.lang.String sourceKey, java.lang.String source, java.lang.String valueKey, long value, java.lang.String sizeKey, int size)
          Creates the submit button bean
static UINode NavigationBarRenderer.createSubmitButton(UIXRenderingContext context, java.lang.Object buttonText, java.lang.Object buttonAccessKey, java.lang.String buttonID, java.lang.String formName, boolean validate, java.lang.String eventKey, java.lang.String sourceKey, java.lang.String source, java.lang.String valueKey, long value, java.lang.String sizeKey, int size)
          Creates the submit button bean
protected  UINode PageRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuButtonsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode BreadCrumbsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageNavigationPathRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode ProcessChoiceBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode GlobalButtonBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml with parameters of type UINode
protected  void XhtmlLafRenderer.addOnSubmitConverterValidators(UIXRenderingContext context, UINode node, java.lang.String requiredMessageKey)
           
protected  void XhtmlLafRenderer.addOnSubmitRequiredValidator(UIXRenderingContext context, UINode node, java.lang.String requiredMessageKey)
           
static void XhtmlLafUtils.addOnSubmitRequiredValidator(UIXRenderingContext context, UINode node, java.lang.String requiredMessageKey, java.lang.Object nodeName)
           
static void XhtmlLafUtils.copyAttr(UIXRenderingContext context, UINode sourceNode, AttributeKey attrKey, MutableUINode destNode)
          Copies an attribute from a source node to a destination UINode
static java.lang.String SubmitButtonRenderer.createJSFunctionCall(UIXRenderingContext context, UINode node, java.lang.String formName)
          Creates the JavaScript form submission String for the parameters of the SubmitButton
protected  OptionContainerRenderer.OptionInfo OptionContainerRenderer.createOptionInfo(UIXRenderingContext context, UINode node)
          Subclasses can override this method to create an OptionInfo subclass, populated with information, leveraging populateOptionInfo as needed.
protected  boolean SelectOptionRenderer.doRenderStyleAttrs(UIXRenderingContext context, UINode node)
           
protected  boolean FormElementRenderer.doRenderStyleAttrs(UIXRenderingContext context, UINode node)
          Returns true if the style attributes should be rendered for this node.
protected  boolean ButtonRenderer.doRenderStyleAttrs(UIXRenderingContext context, UINode node)
           
protected  boolean StyledTextRenderer.doRenderStyleAttrs(UIXRenderingContext context, UINode node)
           
protected  boolean LinkRenderer.doRenderStyleAttrs(UIXRenderingContext context, UINode node)
           
protected  boolean XhtmlLafRenderer.doRenderStyleAttrs(UIXRenderingContext context, UINode node)
          Returns true if the style attributes should be rendered for this node.
protected static int XhtmlLafRenderer.getAccessKeyIndex(UIXRenderingContext context, UINode node, java.lang.Object textValue)
          Returns the index of the access key in the specified node's text.
protected  java.lang.String ChoiceRenderer.getActionScript(UIXRenderingContext context, UINode node)
          gets the script to add to the choice.
protected  java.lang.Object XhtmlLafRenderer.getCachedIDOrName(UIXRenderingContext context, UINode node)
          Version of getIDOrName, using local property caching
static java.lang.String ProcessUtils.getChoiceOnChangeFormSubmitted(UIXRenderingContext context, UINode node, java.lang.String form, java.lang.String eventKey, java.lang.String sourceKey, java.lang.String name, java.lang.String partialTargetsKey, java.lang.String partialTargets)
           
protected  java.lang.Object ButtonRenderer.getClientOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object FormElementRenderer.getDefaultDisabledStyleClass(UIXRenderingContext context, UINode node)
           
protected  int BorderLayoutRenderer.getDefaultMarginIndent(UIXRenderingContext context, UINode node)
          Returns the default marign indent to use if no CELL_PADDING_ATTR is specified
protected  java.lang.Object FormElementRenderer.getDefaultStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ImageRenderer.getDestination(UIXRenderingContext context, UINode node)
          Returns the destination to use for the ImageRenderer.
protected  java.lang.String LinkRenderer.getDestination(UIXRenderingContext context, UINode node)
          Returns the destination to use for the ImageRenderer.
protected  java.lang.Object ImageRenderer.getDestinationAttr(UIXRenderingContext context, UINode node)
           
protected  java.lang.String LinkRenderer.getDestinationAttr(UIXRenderingContext context, UINode node)
           
protected  java.lang.Boolean FormElementRenderer.getDisabled(UIXRenderingContext context, UINode node)
           
protected  java.lang.Boolean OptionContainerRenderer.OptionRenderer.getDisabled(UIXRenderingContext context, UINode node)
           
protected  java.lang.String TableLayoutRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String FormValueRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String NavigationPathRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String BreadCrumbsRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String CellFormatRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String FlowLayoutRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String SelectOptionRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String IconKeyRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String BorderLayoutRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String SeparatorRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ScriptRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String FormInputRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String FormSelectRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String StackLayoutRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ButtonRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String StyledTextRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String LinkRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String RowLayoutRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getFlippableURI(UIXRenderingContext context, UINode node, AttributeKey attrKey)
          Get the URI of an image that might need to be flipped
protected  java.lang.String SubmitButtonRenderer.getFunctionCall(UIXRenderingContext context, UINode node, java.lang.String formName)
          Returns the Javascript function call to return for this button.
protected  java.lang.String ResetButtonRenderer.getFunctionCall(UIXRenderingContext context, UINode node, java.lang.String formName)
          =-= bts bogus copied code from org.apache.myfaces.trinidadinternal.ui.laf.browser.ResetButtonRenderer
protected  org.apache.myfaces.trinidad.component.UIXHierarchy PageMenuButtonsRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy BreadCrumbsRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy PageNavigationPathRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy ProcessChoiceBarRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy GlobalButtonBarRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object HeaderRenderer.getIconURI(UIXRenderingContext context, UINode node, java.lang.String messageType)
          Returns the uri for icon.
protected  java.lang.Object FormElementRenderer.getID(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object LinkRenderer.getID(UIXRenderingContext context, UINode node)
          Override to return the id and then anme, in that order
protected  java.lang.Object XhtmlLafRenderer.getIDOrName(UIXRenderingContext context, UINode node)
          Returns the id of the UINode for html elements that have deprecated name in favor of id.
protected  java.lang.Object StyledTextRenderer.getInheritedStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getInlineStyle(UIXRenderingContext context, UINode node)
          Returns the inline Style used to render this node.
protected  java.lang.Object StyledTextRenderer.getLabeledNodeID(UIXRenderingContext context, UINode node)
           
static DataObjectList LinkDataObject.getLinkDataList(UIXRenderingContext context, UINode parent)
           
static DataObjectList LinkDataObject.getLinkDataList(UIXRenderingContext context, UINode parent, org.apache.myfaces.trinidad.component.UIXHierarchy component, UINode stamp, boolean checkStampType)
           
protected abstract  java.lang.String AliasRenderer.getLocalName(UIXRenderingContext context, UINode node)
           
protected  java.lang.String CommandNavigationItemRenderer.getLocalName(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ImageRenderer.getLongDesc(UIXRenderingContext context, UINode node)
           
static java.lang.String[] SubmitButtonRenderer.getNameValues(UIXRenderingContext context, UINode node)
          Returns the Object storing the name value pairs
protected  java.lang.Object OptionContainerRenderer.OptionRenderer.getNodeName(UIXRenderingContext context, UINode node)
           
 NodeRole FormValueRenderer.getNodeRole(UIXRenderingContext context, UINode node)
           
 NodeRole ScriptRenderer.getNodeRole(UIXRenderingContext context, UINode node)
           
 NodeRole AliasRenderer.getNodeRole(UIXRenderingContext context, UINode node)
           
 NodeRole ImportScriptRenderer.getNodeRole(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ChoiceRenderer.getOnBlur(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object FormElementRenderer.getOnBlur(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ProcessChoiceBarRenderer.getOnChange(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ChoiceRenderer.getOnChange(UIXRenderingContext context, UINode node)
          Returns the onChange handler.
protected  java.lang.Object OptionContainerRenderer.getOnChange(UIXRenderingContext context, UINode node)
          Returns the onChange handler.
protected  java.lang.Object ImageRenderer.getOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ChoiceRenderer.getOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ButtonRenderer.getOnClick(UIXRenderingContext context, UINode node)
          Override to provide Javascript for moving to the destination
protected  java.lang.Object ResetButtonRenderer.getOnClick(UIXRenderingContext context, UINode node)
          Show the modal dialog on click. =-= bts copied code from org.apache.myfaces.trinidadinternal.ui.blaf.RestButtonRenderer
protected  java.lang.Object LinkRenderer.getOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnDoubleClick(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ImageRenderer.getOnFocus(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object FormElementRenderer.getOnFocus(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnKeyDown(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnKeyPress(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnKeyUp(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnMouseDown(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnMouseMove(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnMouseOut(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnMouseOver(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object XhtmlLafRenderer.getOnMouseUp(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object OptionContainerRenderer.OptionRenderer.getOptionValue(UIXRenderingContext context, UINode node)
          Returns the value associated with the option value attribute
protected  java.lang.String ShowItemRenderer.getPartialChangeScript(UIXRenderingContext context, UINode node)
           
protected  java.lang.String LinkRenderer.getPartialChangeScript(UIXRenderingContext context, UINode node)
           
static java.lang.String[] XhtmlLafUtils.getPartialTargets(UIXRenderingContext context, UINode node)
          Returns the partial targets associated with the specified node
static java.lang.String[] XhtmlLafUtils.getPartialTargets(UIXRenderingContext context, UINode node, java.lang.Object id)
          Returns the partial targets associated with the specified node, including the specified ID.
protected  java.lang.Boolean FormElementRenderer.getReadOnly(UIXRenderingContext context, UINode node)
           
protected  java.lang.Boolean OptionContainerRenderer.OptionRenderer.getReadOnly(UIXRenderingContext context, UINode node)
           
protected  UINode PageRenderer.getRenderingUINode(UIXRenderingContext context, UINode node)
           
 int XhtmlLafRenderer.getResolvedSelectedIndex(UIXRenderingContext context, UINode node)
          determine the selected child index
protected  int XhtmlLafRenderer.getResolvedSelectedIndexFromCache(UIXRenderingContext context, UINode node)
          Extension of XhtmlLafRenderer.getResolvedSelectedIndex().
protected  java.lang.Boolean OptionContainerRenderer.OptionRenderer.getSelected(UIXRenderingContext context, UINode node)
          Returns the value associated with the selected attribute
protected  java.lang.Integer OptionContainerRenderer.getSelectedIndex(UIXRenderingContext context, UINode node)
          Returns the value associated with the selected index attribute
protected  java.lang.Number OptionContainerRenderer.OptionRenderer.getSelectedIndex(UIXRenderingContext context, UINode node)
           
protected  java.lang.String OptionContainerRenderer.getSelectedValue(UIXRenderingContext context, UINode node)
          Returns the value associated with the selected value attribute
protected  java.lang.String OptionContainerRenderer.OptionRenderer.getSelectedValue(UIXRenderingContext context, UINode node)
           
protected  Selection OptionContainerRenderer.getSelection(UIXRenderingContext context, UINode node)
           
protected  Selection OptionContainerRenderer.OptionRenderer.getSelection(UIXRenderingContext context, UINode node)
           
static java.lang.String NavigationBarRenderer.getSingleDestinationSubmit(UIXRenderingContext context, UINode node, java.lang.String form, java.lang.String name, long value, boolean doValidate)
           
static java.lang.String NavigationBarRenderer.getSingleDestinationSubmit(UIXRenderingContext context, UINode node, java.lang.String form, java.lang.String eventKey, java.lang.String sourceKey, java.lang.String name, java.lang.String valueKey, long value, boolean doValidate)
           
static java.lang.String NavigationBarRenderer.getSingleDestinationURL(UIXRenderingContext context, UINode node, java.lang.String eventKey, java.lang.String sourceKey, java.lang.String name, java.lang.String valueKey, long value)
           
protected  java.lang.Object ImageRenderer.getSource(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuButtonsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode BreadCrumbsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageNavigationPathRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode ProcessChoiceBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode GlobalButtonBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object NavigationPathRenderer.getStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object BreadCrumbsRenderer.getStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object IconKeyRenderer.getStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object FormElementRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Override to return different styles depending on whether we are disabled or not.
protected  java.lang.Object OptionContainerRenderer.OptionRenderer.getStyleClass(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object LinkRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Returns the StyleClass to use to render this node.
protected  java.lang.Object XhtmlLafRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Returns the StyleClass to use to render this node.
protected  java.lang.Object LinkRenderer.getTargetFrame(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object ImageRenderer.getText(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object FormElementRenderer.getText(UIXRenderingContext context, UINode node)
          Returns the value associated with the text attribute
protected  java.lang.Object OptionContainerRenderer.OptionRenderer.getText(UIXRenderingContext context, UINode node)
          Returns the value associated with the text attribute
protected  java.lang.Object ButtonRenderer.getText(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object StyledTextRenderer.getText(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object LinkRenderer.getText(UIXRenderingContext context, UINode node)
          Returns the destination to use for the ImageRenderer.
protected  java.lang.Object XhtmlLafRenderer.getText(UIXRenderingContext context, UINode node)
          Returns the value associated with the text attribute
protected  java.lang.Object HeaderRenderer.getText(UIXRenderingContext context, UINode node, java.lang.String messageType)
          Returns text of header
protected  java.lang.Object FormElementRenderer.getTransformedName(UIXRenderingContext context, UINode node)
          Returns the name of the node, transformed for the given context
protected  java.lang.Object OptionContainerRenderer.OptionRenderer.getTransformedName(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object OptionContainerRenderer.OptionRenderer.getValue(UIXRenderingContext context, UINode node)
          Returns the value associated with the value attribute
protected  boolean BorderLayoutRenderer.hasSideNodes(UIXRenderingContext context, UINode node)
           
protected  boolean LinkRenderer.isDisabled(UIXRenderingContext context, UINode node)
           
protected  boolean ButtonRenderer.isEmpty(UIXRenderingContext context, UINode node)
          Return true if this link is empty ... has no children, text, destination, or node name.
protected  boolean LinkRenderer.isEmpty(UIXRenderingContext context, UINode node)
          Return true if this link is empty ... has no children, text, destination, or node name.
protected  boolean FormElementRenderer.isHiddenLabelRequired(UIXRenderingContext context, UINode node)
           
protected  java.lang.Boolean ChoiceRenderer.isMultipleSelection(UIXRenderingContext context, UINode node)
           
protected abstract  java.lang.Boolean OptionContainerRenderer.isMultipleSelection(UIXRenderingContext context, UINode node)
           
protected  java.lang.Boolean OptionContainerRenderer.OptionRenderer.isMultipleSelection(UIXRenderingContext context, UINode node)
           
protected  boolean OptionContainerRenderer.OptionRenderer.isOptionSelected(UIXRenderingContext context, UINode node)
           
static boolean XhtmlLafUtils.isReadOnly(UIXRenderingContext context, UINode node)
          Return true if readOnly attribute exists and set to true
protected  boolean GlobalButtonBarRenderer.isRendered(UIXRenderingContext context, UINode stamp)
           
 boolean XhtmlLafRenderer.isSupportedNode(UIXRenderingContext context, UINode node)
          Method returning true if the UINode is supported.
protected  boolean ChoiceRenderer.needsChangeTracker(UIXRenderingContext context, UINode node)
          return true if you need to render the CHOICE_CHANGE_TRACKER and _ACTION_HANDLER_PREFIX javascript.
protected  boolean FormElementRenderer.needsUniqueID(UIXRenderingContext context, UINode node)
           
protected  void OptionContainerRenderer.populateOptionInfo(UIXRenderingContext context, UINode node, OptionContainerRenderer.OptionInfo info)
           
protected  void ImageRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void NavigationPathRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void BreadCrumbsRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void BorderLayoutRenderer.postrender(UIXRenderingContext context, UINode node)
           
 void ScriptRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void ProcessChoiceBarRenderer.postrender(UIXRenderingContext context, UINode node)
          Called to render the portion after the contents.
protected  void ChoiceRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void FormElementRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void OptionContainerRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void LinkRenderer.postrender(UIXRenderingContext context, UINode node)
          Called to render the portion after the contents.
protected  void NavigationBarRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void RowLayoutRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonBarRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void XhtmlLafRenderer.postrender(UIXRenderingContext context, UINode node)
          Override to add support for rendering syle elements
protected  void ImageRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void NavigationPathRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void BreadCrumbsRenderer.prerender(UIXRenderingContext context, UINode node)
           
 void ScriptRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ProcessChoiceBarRenderer.prerender(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
protected  void FormInputRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ChoiceRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void OptionContainerRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void ResetButtonRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void LinkRenderer.prerender(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
protected  void NavigationBarRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void RowLayoutRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonBarRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void XhtmlLafRenderer.prerender(UIXRenderingContext context, UINode node)
          Override to add support for rendering syle elements
 void IconRenderer.render(UIXRenderingContext context, UINode node)
          Render the icon
 void SpacerRenderer.render(UIXRenderingContext context, UINode node)
           
 void SelectOptionRenderer.render(UIXRenderingContext context, UINode node)
           
 void RepeatIdContextPropertyUINode.render(UIXRenderingContext context, UINode node)
          render using the RepeatIdResponseWriter.
 void FormElementRenderer.render(UIXRenderingContext context, UINode node)
           
 void OptionRenderer.render(UIXRenderingContext context, UINode node)
           
 void AliasRenderer.render(UIXRenderingContext context, UINode node)
           
 void LinkRenderer.render(UIXRenderingContext context, UINode node)
           
 void XhtmlLafRenderer.render(UIXRenderingContext context, UINode node)
          Override to handle case where this element isn't in a supported module of the current user agent
 boolean CommandItemRenderer.render(UIXRenderingContext context, UINode node, boolean isDisabled, boolean isReadOnly)
           
 boolean SelectOptionRenderer.render(UIXRenderingContext context, UINode node, boolean isDisabled, boolean isReadOnly)
           
protected  void XhtmlLafRenderer.renderAccessKeyText(UIXRenderingContext context, UINode node, java.lang.Object textValue, java.lang.String accesskeyClass)
          Renders the text with the access key highlighted as appropriate.
protected  boolean FormElementRenderer.renderAsElement(UIXRenderingContext context, UINode node)
          Returns true if we are rendering as the FormElement that we are and not some placeholder for that value.
protected  boolean OptionContainerRenderer.OptionRenderer.renderAsElement(UIXRenderingContext context, UINode node)
           
protected  void SelectOptionRenderer.renderAsNonElement(UIXRenderingContext context, UINode node)
           
protected  void FormElementRenderer.renderAsNonElement(UIXRenderingContext context, UINode node)
           
protected  void OptionContainerRenderer.renderAsNonElement(UIXRenderingContext context, UINode node)
           
protected  void FormElementRenderer.renderAsNonElementContent(UIXRenderingContext context, UINode node)
           
protected  void TableLayoutRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders attributes of the current node.
protected  void SubmitButtonRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void FormValueRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void CellFormatRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders attributes of the current node.
protected  void BorderLayoutRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void ScriptRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void FormInputRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void FormSelectRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void OptionContainerRenderer.OptionRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void LinkRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void RowLayoutRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders attributes of the current node.
protected  void GlobalButtonBarRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Renders attributes of the current node.
protected  void XhtmlLafRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void XhtmlLafRenderer.renderAttributesExceptID(UIXRenderingContext context, UINode node)
           
protected  void FlowLayoutRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
           
protected  void RowLayoutRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonBarRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
           
protected  void StackLayoutRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node, int nextIndex)
           
protected  void GlobalButtonBarRenderer.renderBetweenNodes(UIXRenderingContext context, UINode node)
           
protected  boolean RowLayoutRenderer.renderCellElement(UIXRenderingContext context, UINode child)
           
protected  void RowLayoutRenderer.renderChild(UIXRenderingContext context, UINode child)
          Called to render a child.
protected  void ImageRenderer.renderContent(UIXRenderingContext context, UINode node)
          Do all of the rendering in renderContent--this does two things--it allows us to make sure that we can't have childern and it ensures that we don't need to call getSource() multiple times per render, as this can be a little expensive for subclasses like ButtonRenderer.
protected  void NavigationPathRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void BreadCrumbsRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void SelectOptionRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void IconKeyRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void BorderLayoutRenderer.renderContent(UIXRenderingContext context, UINode node)
          since this class overrides the method in BaseRenderer, the method renderIndexedChildren is provided to access the superclass method.
protected  void SeparatorRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void ProcessChoiceBarRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void ChoiceRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void ButtonRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void StyledTextRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void ImportScriptRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void LinkRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void NavigationBarRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void GlobalButtonBarRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void RowLayoutRenderer.renderDefaultCellAttributes(UIXRenderingContext context, UINode child)
           
protected  void GlobalButtonBarRenderer.renderDefaultCellAttributes(UIXRenderingContext context, UINode child)
           
protected  void ButtonRenderer.renderDestination(UIXRenderingContext context, UINode node, java.lang.String destination)
           
protected  void LinkRenderer.renderDestination(UIXRenderingContext context, UINode node, java.lang.String destination)
          Renders the destination of the link
protected  void FormInputRenderer.renderEventHandlers(UIXRenderingContext context, UINode node)
          Renders event handlers for the node.
protected  void FormSelectRenderer.renderEventHandlers(UIXRenderingContext context, UINode node)
          Renders event handlers for the node.
protected  void OptionContainerRenderer.renderEventHandlers(UIXRenderingContext context, UINode node)
          Renders event handlers for the node.
protected  void LinkRenderer.renderEventHandlers(UIXRenderingContext context, UINode node)
          Renders event handlers for the node.
protected  void XhtmlLafRenderer.renderEventHandlers(UIXRenderingContext context, UINode node)
          Renders event handlers for the node.
protected  void ImageRenderer.renderHAlign(UIXRenderingContext context, UINode node)
           
protected  void XhtmlLafRenderer.renderHAlign(UIXRenderingContext context, UINode node)
           
protected  void ImageRenderer.renderID(UIXRenderingContext context, UINode node)
           
protected  void LinkRenderer.renderID(UIXRenderingContext context, UINode node)
           
protected  void ImageRenderer.renderImageAttributes(UIXRenderingContext context, UINode node)
          Called to render the attributes of the tag
protected  void ShowItemRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
           
protected  void BreadCrumbsRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int currVisChildIndex, int prevVisChildIndex, int nextVisChildIndex, int ithRenderedChild)
           
protected  void BorderLayoutRenderer.renderIndexedChildren(UIXRenderingContext context, UINode node)
          writes out the indexed children.
protected  void XhtmlLafRenderer.renderInlineStyleAttribute(UIXRenderingContext context, UINode node)
          Renders the inline style attribute for the specified node
protected  boolean NavigationPathRenderer.renderLastChild(UIXRenderingContext context, UINode node)
           
protected  boolean BreadCrumbsRenderer.renderLastChild(UIXRenderingContext context, UINode node)
           
protected  void BorderLayoutRenderer.renderLeftSideNode(UIXRenderingContext context, UINode node, java.lang.String leftName, UINode leftNode, java.lang.Integer rowSpan, java.lang.Integer colSpan)
          renders the left most side node in this borderLayout
protected  void BorderLayoutRenderer.renderMargin(UIXRenderingContext context, UINode node, java.lang.Integer rowSpan)
          this method renders white space as the margin.
protected  void XhtmlLafRenderer.renderNameAndID(UIXRenderingContext context, UINode node)
          Renders the id of the UINode for html elements that have deprecated name in favor of id.
protected  void BreadCrumbsRenderer.renderNode(UIXRenderingContext context, UINode child, int nextVisChildIndex)
           
protected  void ProcessChoiceBarRenderer.renderPostChoice(UIXRenderingContext context, UINode node)
           
protected  void ProcessChoiceBarRenderer.renderPreChoice(UIXRenderingContext context, UINode node)
          Called to render the portion before the contents.
protected  boolean FormElementRenderer.renderReadOnlyAsElement(UIXRenderingContext context, UINode node)
           
protected  void StyledTextRenderer.renderScripts(UIXRenderingContext context, UINode node)
           
protected  void SelectOptionRenderer.renderSelectedAttribute(UIXRenderingContext context, UINode node)
           
protected  void OptionContainerRenderer.OptionRenderer.renderSelectedAttribute(UIXRenderingContext context, UINode node)
           
protected  boolean OptionContainerRenderer.renderSelectItem(UIXRenderingContext context, UINode node, javax.faces.component.UIComponent component, javax.faces.model.SelectItem item, java.lang.String value, boolean isSelected, boolean renderedOne, int index)
          Render a single select item.
protected  void OptionContainerRenderer.renderSelectItemOptions(UIXRenderingContext context, UINode node, javax.faces.component.UIComponent component, java.util.List<javax.faces.model.SelectItem> items)
           
protected  void ImageRenderer.renderShortDesc(UIXRenderingContext context, UINode node)
          we render shortDesc as alt text on image.
protected  void XhtmlLafRenderer.renderShortDesc(UIXRenderingContext context, UINode node)
           
static void FormElementRenderer.renderShortDescAsHiddenLabel(UIXRenderingContext context, UINode node, java.lang.Object id)
           
protected  void BorderLayoutRenderer.renderSideNode(UIXRenderingContext context, UINode node, UINode sideNode, java.lang.String sideNodeName, java.lang.Integer rowSpan, java.lang.String width)
          Renders one of the side nodes.
protected  void GlobalButtonBarRenderer.renderStamp(UIXRenderingContext context, UINode node, boolean selected)
           
protected  void NavigationPathRenderer.renderStamp(UIXRenderingContext context, UINode node, UINode stamp, boolean isLastChild)
           
protected  void StyledTextRenderer.renderStyleAttrs(UIXRenderingContext context, UINode node)
          Actually renders the style attributes.
protected  void XhtmlLafRenderer.renderStyleAttrs(UIXRenderingContext context, UINode node)
          Actually renders the style attributes.
protected  void XhtmlLafRenderer.renderStyleAttrs(UIXRenderingContext context, UINode node, java.lang.String defaultStyleClass)
          Actually renders the style attributes styleClass and inlineStyle on the component, as well as the defaultStyleClass.
protected  void XhtmlLafRenderer.renderStyledText(UIXRenderingContext context, UINode node)
          Renders the node text using the relevant style information.
protected  void XhtmlLafRenderer.renderStyledText(UIXRenderingContext context, UINode node, boolean renderAccessKeys, boolean renderID)
          Renders the node text using the relevant style information.
protected  void ChoiceRenderer.renderTrigger(UIXRenderingContext context, UINode node, ClientAction action)
          render the client action trigger.
protected  void CommandItemRenderer.renderValue(UIXRenderingContext context, UINode node, java.lang.Object value)
           
protected  void OptionContainerRenderer.OptionRenderer.renderValue(UIXRenderingContext context, UINode node, java.lang.Object value)
           
protected  void PageRenderer.renderWithNode(UIXRenderingContext context, UINode node, UINode renderingUINode)
           
protected  void ProcessChoiceBarRenderer.selectItemsRenderContent(UIXRenderingContext context, UINode node)
           
protected  void ChoiceRenderer.selectItemsRenderContent(UIXRenderingContext context, UINode node)
           
protected  boolean PageMenuButtonsRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean ProcessChoiceBarRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean GlobalButtonBarRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean StyledTextRenderer.shouldUseFormData(UIXRenderingContext context, UINode node)
          Returns false because styled text is read only, so its value does not get submitted to the server, making it unavailable for form data repopulation.
protected  void XhtmlLafRenderer.startRenderingStyleElements(UIXRenderingContext context, UINode node)
          Renders the combination of inline and class style attributes as elements
static boolean XhtmlLafRenderer.structureSatisfiesRole(UIXRenderingContext context, UINode node, NodeRole expectedRole)
           
 

Constructors in org.apache.myfaces.trinidadinternal.ui.laf.base.xhtml with parameters of type UINode
LinkDataObject(java.lang.Object id, java.lang.Object text, java.lang.Object shortDesc, java.lang.Object destination, java.lang.Object onClick, java.lang.Object targetFrame, java.lang.Object accessKey, boolean isSelected, boolean isDisabled, java.lang.Integer currentIndex, UINode node)
           
 

Uses of UINode in org.apache.myfaces.trinidadinternal.ui.laf.simple.desktop
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.simple.desktop that return UINode
protected  UINode GlobalHeaderRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuButtonsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.simple.desktop with parameters of type UINode
protected  boolean ButtonRenderer.doRenderImageContent(UIXRenderingContext context, UINode node)
          Tests whether the button should be rendered as an image.
protected  boolean SubmitButtonRenderer.doRenderImageContent(UIXRenderingContext context, UINode node)
          Tests whether the button should be rendered as an image.
protected  boolean ResetButtonRenderer.doRenderImageContent(UIXRenderingContext context, UINode node)
          Tests whether the button should be rendered as an image.
protected  java.lang.String MessageBoxRenderer.getElementName(UIXRenderingContext context, UINode node)
          Implementation of ElementRenderer.getName();
protected  java.lang.String SideBarRenderer.getElementName(UIXRenderingContext context, UINode node)
          Implementation of ElementRenderer.getName();
protected  java.lang.String GlobalHeaderRenderer.getElementName(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy GlobalHeaderRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy PageMenuBarRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  org.apache.myfaces.trinidad.component.UIXHierarchy PageMenuButtonsRenderer.getHierarchyBase(UIXRenderingContext context, UINode node)
           
protected  java.lang.String ButtonRenderer.getServerStyleName(UIXRenderingContext context, UINode node, boolean disabled)
          Returns the name of the server-side style for styling button text.
protected  java.lang.String SubmitButtonRenderer.getServerStyleName(UIXRenderingContext context, UINode node, boolean disabled)
          Returns the name of the server-side style for styling button text.
protected  java.lang.String ResetButtonRenderer.getServerStyleName(UIXRenderingContext context, UINode node, boolean disabled)
          Returns the name of the server-side style for styling button text.
protected  UINode GlobalHeaderRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuBarRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  UINode PageMenuButtonsRenderer.getStamp(UIXRenderingContext context, UINode node)
           
protected  java.lang.Object SideBarRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Returns the sideBar's style class: OraSideBar
protected  java.lang.Object GlobalHeaderRenderer.getStyleClass(UIXRenderingContext context, UINode node)
          Override of getStyleClass() which forces style class to OraGlobalHeader.
protected  boolean GlobalHeaderRenderer.isEmpty(UIXRenderingContext context, UINode node)
           
protected  boolean PageMenuBarRenderer.isEmpty(UIXRenderingContext context, UINode node)
          Checks to see whether the globalHeader is empty (contains no indexed children).
protected  void MessageBoxRenderer.postrender(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.postrender()
protected  void SideBarRenderer.postrender(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.postrender()
protected  void GlobalHeaderRenderer.postrender(UIXRenderingContext context, UINode node)
           
protected  void MessageBoxRenderer.prerender(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.prerender()
protected  void SideBarRenderer.prerender(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.prerender()
protected  void GlobalHeaderRenderer.prerender(UIXRenderingContext context, UINode node)
           
protected  void MessageBoxRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.renderAttributes().
protected  void SideBarRenderer.renderAttributes(UIXRenderingContext context, UINode node)
          Override of BaseRenderer.renderAttributes().
protected  void GlobalHeaderRenderer.renderAttributes(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderBetweenIndexedChildren(UIXRenderingContext context, UINode node)
          Override of renderBetweenIndexedChildren() which renders the separator Icon.
protected  void GlobalButtonBarRenderer.renderBetweenNodes(UIXRenderingContext context, UINode node)
          Override of renderBetweenIndexedChildren() which renders the separator Icon.
protected  void TabBarRenderer.renderBetweenNodes(UIXRenderingContext context, UINode node)
          Override of the base.desktop.TabBarRenderer's renderBetweenNodes().
protected  void GlobalHeaderRenderer.renderContent(UIXRenderingContext context, UINode node)
           
protected  void GlobalHeaderRenderer.renderIndexedChild(UIXRenderingContext context, UINode node, int index)
           
protected  void GlobalHeaderRenderer.renderItemStyleAttrs(UIXRenderingContext context, UINode node, int index, boolean selected)
          Renders the style attributes for global header items
protected  void TabBarRenderer.renderNode(UIXRenderingContext context, UINode child, boolean selected, boolean isFirst, boolean isLast, boolean isNextSelected)
           
protected  void GlobalHeaderRenderer.renderStamp(UIXRenderingContext context, UINode stamp, boolean selected)
           
protected  void TabBarRenderer.renderTabStyleAttrs(UIXRenderingContext context, UINode node, boolean selected, boolean disabled)
          Override of renderTabStyleAttrs() which adds support for a background image
protected  boolean GlobalHeaderRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean PageMenuBarRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
protected  boolean PageMenuButtonsRenderer.setNewPath(UIXRenderingContext context, UINode node, org.apache.myfaces.trinidad.component.UIXHierarchy component)
           
 

Uses of UINode in org.apache.myfaces.trinidadinternal.ui.path
 

Methods in org.apache.myfaces.trinidadinternal.ui.path that return UINode
 UINode PathImpl.followPath(UIXRenderingContext context, UINode from)
          Follows the entire path.
 UINode Path.followPath(UIXRenderingContext context, UINode from)
          Follows the entire path.
 UINode PathImpl.followPath(UIXRenderingContext context, UINode from, int start, int depth)
          Returns the result of partially following the path from a starting node.
 UINode Path.followPath(UIXRenderingContext context, UINode from, int start, int depth)
          Returns the result of partially following the path from a starting node.
 

Methods in org.apache.myfaces.trinidadinternal.ui.path with parameters of type UINode
 UINode PathImpl.followPath(UIXRenderingContext context, UINode from)
          Follows the entire path.
 UINode Path.followPath(UIXRenderingContext context, UINode from)
          Follows the entire path.
 UINode PathImpl.followPath(UIXRenderingContext context, UINode from, int start, int depth)
          Returns the result of partially following the path from a starting node.
 UINode Path.followPath(UIXRenderingContext context, UINode from, int start, int depth)
          Returns the result of partially following the path from a starting node.
 

Uses of UINode in org.apache.myfaces.trinidadinternal.uinode
 

Classes in org.apache.myfaces.trinidadinternal.uinode that implement UINode
 class UIComponentUINode
          Implements UINode and setAttributeValue().
 class UIXComponentUINode
          Subclass for UIX components.
 

Methods in org.apache.myfaces.trinidadinternal.uinode that return UINode
 UINode UIComponentUINode.getIndexedChild(int i)
           
 UINode UIComponentUINode.getIndexedChild(UIXRenderingContext context, int childIndex)
           
 UINode UIComponentUINode.getNamedChild(java.lang.String name)
           
 UINode UIComponentUINode.getNamedChild(UIXRenderingContext context, java.lang.String childName)
           
 UINode UINodeFacesBean.getUINode()
           
 UINode UIComponentUINodeList.getUINode(UIXRenderingContext context, int index)
           
 UINode UIComponentUINodeList.removeUINode(int index)
           
 UINode UIComponentUINodeList.setUINode(int index, UINode node)
           
 

Methods in org.apache.myfaces.trinidadinternal.uinode with parameters of type UINode
 void UIComponentUINodeList.addUINode(int index, UINode node)
           
 void UIComponentUINodeList.addUINode(UINode node)
           
protected  Renderer UIXComponentUINode.getRenderer(UIXRenderingContext context, UINode dataNode)
           
 void UIXComponentUINode.postrenderInternal(UIXRenderingContext context, UINode dataNode)
           
 void UIXComponentUINode.prerenderInternal(UIXRenderingContext context, UINode dataNode)
           
 void UIComponentUINode.render(UIXRenderingContext context, UINode dataNode)
           
 void UIXComponentUINode.renderInternal(UIXRenderingContext context, UINode dataNode)
           
 UINode UIComponentUINodeList.setUINode(int index, UINode node)
           
 



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