Uses of Interface
org.apache.myfaces.trinidadinternal.ui.data.BoundValue

Packages that use BoundValue
org.apache.myfaces.trinidadinternal.ui.action   
org.apache.myfaces.trinidadinternal.ui.collection   
org.apache.myfaces.trinidadinternal.ui.composite   
org.apache.myfaces.trinidadinternal.ui.data   
org.apache.myfaces.trinidadinternal.ui.data.bind   
org.apache.myfaces.trinidadinternal.ui.laf.base   
org.apache.myfaces.trinidadinternal.ui.laf.base.desktop   
org.apache.myfaces.trinidadinternal.uinode   
org.apache.myfaces.trinidadinternal.uinode.bind   
org.apache.myfaces.trinidadinternal.uinode.nav   
 

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

Methods in org.apache.myfaces.trinidadinternal.ui.action with parameters of type BoundValue
 void FireAction.setEventBinding(BoundValue eventBinding)
          Sets a BoundValue that will dynamically evaluate the event name.
 void FireAction.setFormNameBinding(BoundValue formNameBinding)
          Sets a BoundValue that will dynamically evaluate the source
 void FireAction.setSourceBinding(BoundValue sourceBinding)
          Sets a BoundValue that will dynamically evaluate the source
 void FirePartialAction.setTargetsBinding(BoundValue partialTargetsBinding)
          Sets a BoundValue that will dynamically evaluate the partial targets.
 void FireAction.setUnvalidatedBinding(BoundValue unvalidatedBinding)
          Sets a { @link BoundValue } that will dynamically evaluate the unvalidated value.
 

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

Methods in org.apache.myfaces.trinidadinternal.ui.collection that return BoundValue
 BoundValue Parameter.getRawValue()
          Returns the unresolved BoundValue (a la getRawAttributeValue).
 

Methods in org.apache.myfaces.trinidadinternal.ui.collection with parameters of type BoundValue
 void Parameter.setValueBinding(BoundValue valueBinding)
          Sets the value of the parameter as a dynamically determined string.
 

Constructors in org.apache.myfaces.trinidadinternal.ui.collection with parameters of type BoundValue
DataObjectListNodeList(BoundValue boundData)
          Creates an empty DataObjectListNodeList.
DataObjectListNodeList(UINode baseNode, BoundValue boundData)
          Creates a DataObjectListNodeList wrapping an single UINode.
DataObjectListNodeList(UINodeList baseNodes, BoundValue boundData)
          Creates a DataObjectListNodeList wrapping an entire UINodeList.
 

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

Classes in org.apache.myfaces.trinidadinternal.ui.composite that implement BoundValue
 class PoppedAttributeBoundValue
           This BoundValue is typically used to implement UINodeRenderers.
 class RootAttributeBoundValue
          BoundValue that retrieves its value from the attrKey attribute of the parent RenderingContext's currentUINode.
 class RootBoundValue
          Returns the CurrentUINode in the parent context.
 class RootChildBoundValue
          BoudnValue that returns the specified child of the Root node.
 

Methods in org.apache.myfaces.trinidadinternal.ui.composite that return BoundValue
static BoundValue RootBoundValue.getBoundValue()
          returns the singleton instance of this class.
 

Constructors in org.apache.myfaces.trinidadinternal.ui.composite with parameters of type BoundValue
ContextPropertyUINode(java.lang.String propertyNamespace, java.lang.Object propertyName, BoundValue propertyValue)
           
PoppedAttributeBoundValue(BoundValue targetNodeValue, AttributeKey attrKey)
           
 

Uses of BoundValue in org.apache.myfaces.trinidadinternal.ui.data
 

Subinterfaces of BoundValue in org.apache.myfaces.trinidadinternal.ui.data
 interface MutableBoundValue
           
 

Classes in org.apache.myfaces.trinidadinternal.ui.data that implement BoundValue
 class DataBoundValue
          DataBoundValue implements BoundValue to retrieve a DataObject from the current rendering context, and perform a select on that object.
 

Uses of BoundValue in org.apache.myfaces.trinidadinternal.ui.data.bind
 

Classes in org.apache.myfaces.trinidadinternal.ui.data.bind that implement BoundValue
 class AccessKeyBoundValue
          A BoundValue that will decompose a second bound value into a text string and an access key using conventional ampersand ('&') notation.
 class AndBoundValue
          BoundValue that returns Boolean.TRUE if both passed in BoundValues return Boolean.TRUE and returns Boolean.FALSE otherwise.
 class ComparisonBoundValue
          Booolean BoundValue that compares either two BoundValues or a BoundValues and an Object with a comparison operator and returns the Boolean result.
 class ConcatBoundValue
          BoundValue implementation that will concatenate the string results of a list of other BoundValues.
 class ContextPropertyBoundValue
          BoundValue implementation that returns the result of calling RenderingContext.getProperty().
 class ConvertBoundValue
          A BoundValue implementation that wraps another and converts its results to the specified java type.
 class DefaultingBoundValue
          A BoundValue implementation that wraps another and returns a provided default value in place of null.
 class FixedBoundValue
          BoundValue implementation that always returns the value passed into the constructor.
 class IfBoundValue
          BoundValue that uses a Boolean BoundValue to determine which of two values to return.
 class IsAgentApplicationBoundValue
          BoundValue that returns a Boolean based on the Agent Application.
 class NotBoundValue
          BoundValue that returns Boolean.FALSE if the passed in BoundValue is Boolean.TRUE and returns Boolean.TRUE otherwise.
 class OrBoundValue
          BoundValue that returns Boolean.TRUE if either passed in BoundValues return Boolean.TRUE and returns Boolean.FALSE otherwise.
 class StringExistsBoundValue
          BoundValue that wraps another BoundValue and returns Boolean.TRUE if converting its result to a String results in a non-null and non-empty String; otherwise, returns Boolean.FALSE.
 class ToStringBoundValue
          BoundValue that wraps another BoundValue and returns the result of that BoundValue as a String, if possible.
 

Methods in org.apache.myfaces.trinidadinternal.ui.data.bind with parameters of type BoundValue
static ComparisonBoundValue ComparisonBoundValue.createExistsValue(BoundValue existenceValue)
           
 

Constructors in org.apache.myfaces.trinidadinternal.ui.data.bind with parameters of type BoundValue
AccessKeyBoundValue(BoundValue textWithAccessKey, boolean returnAccessKey)
          Creates an AccessKeyBoundValue
AndBoundValue(BoundValue[] values)
          Creates a AndBoundValue.
AndBoundValue(BoundValue value1, BoundValue value2)
          Creates a AndBoundValue.
ComparisonBoundValue(int comparison, BoundValue leftSideValue, BoundValue rightSideValue)
           
ComparisonBoundValue(int comparison, BoundValue leftSideValue, java.lang.Object rightSide)
           
ConcatBoundValue(BoundValue[] values)
          Create a BoundValue that concatenates the Strings of all the contained BoundValues
ConvertBoundValue(BoundValue wrapped, java.lang.Class<?> javaType)
          Creates a ConvertBoundValue.
ConvertBoundValue(BoundValue wrapped, java.lang.String javaType)
          Creates a ConvertBoundValue.
DefaultingBoundValue(BoundValue wrapped, BoundValue defaultBoundValue)
          Creates a DefaultingBoundValue.
DefaultingBoundValue(BoundValue wrapped, java.lang.Object defaultValue)
          Creates a DefaultingBoundValue.
IfBoundValue(BoundValue testBoundValue, BoundValue trueBoundValue, BoundValue falseBoundValue)
           
IfBoundValue(BoundValue testBoundValue, BoundValue trueBoundValue, java.lang.Object falseValue)
           
IfBoundValue(BoundValue testBoundValue, java.lang.Object trueValue, BoundValue falseBoundValue)
           
IfBoundValue(BoundValue testBoundValue, java.lang.Object trueValue, java.lang.Object falseValue)
           
NotBoundValue(BoundValue value)
          Creates a NotBoundValue.
OrBoundValue(BoundValue[] values)
          Creates a OrBoundValue.
OrBoundValue(BoundValue value1, BoundValue value2)
          Creates an OrBoundValue.
StringExistsBoundValue(BoundValue wrapped)
          Creates a StringExistsBoundValue.
ToStringBoundValue(BoundValue wrapped)
          Creates a ToStringBoundValue.
 

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

Classes in org.apache.myfaces.trinidadinternal.ui.laf.base that implement BoundValue
 class IconURIBoundValue
          BoundValue implementation that returns the URI of a Cabo icon.
 class SkinTranslatedBoundValue
          BoundValue used to retrieve a translated String from the Skin, with a specified key.
 class UseAccessibilityBoundValue
          BoundValue used to determine if rendering is in inaccessible mode.
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base that return BoundValue
static BoundValue BaseLafUtils.createIsRenderedBoundValue(BoundValue targetUINodeValue)
          produces a BoundValue that checks to see if a given UINode must be rendered.
static BoundValue BaseLafUtils.createIsRenderedBoundValue(java.lang.String childName)
           
static BoundValue UseAccessibilityBoundValue.sharedInstance()
           
 

Methods in org.apache.myfaces.trinidadinternal.ui.laf.base with parameters of type BoundValue
static BoundValue BaseLafUtils.createIsRenderedBoundValue(BoundValue targetUINodeValue)
          produces a BoundValue that checks to see if a given UINode must be rendered.
 

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

Classes in org.apache.myfaces.trinidadinternal.ui.laf.base.desktop that implement BoundValue
static class TreeRenderer.TreeImageURIBoundValue
           
 

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

Classes in org.apache.myfaces.trinidadinternal.uinode that implement BoundValue
 class FireActionBoundValue
           
 

Methods in org.apache.myfaces.trinidadinternal.uinode that return BoundValue
protected  BoundValue EditableFacesBean.getConverterBoundValue()
           
 

Constructors in org.apache.myfaces.trinidadinternal.uinode with parameters of type BoundValue
FireActionBoundValue(org.apache.myfaces.trinidad.component.UIXComponent component, BoundValue unvalidatedBV)
           
FireActionBoundValue(org.apache.myfaces.trinidad.component.UIXComponent component, BoundValue unvalidatedBV, BoundValue partialSubmitBV)
           
FireActionBoundValue(org.apache.myfaces.trinidad.component.UIXComponent component, BoundValue unvalidatedBV, BoundValue partialSubmitBV, java.lang.String part)
           
 

Uses of BoundValue in org.apache.myfaces.trinidadinternal.uinode.bind
 

Classes in org.apache.myfaces.trinidadinternal.uinode.bind that implement BoundValue
 class ClientIdBoundValue
          BoundValue that returns the clientId of the component.
 class ConverterBoundValue
          BoundValue that returns the appropriate converter
 class EntriesBoundValue
          BoundValue that will retrieve entries from a bean.
 class MenuSelectedValueBoundValue
          BoundValue that returns the clientId of the component.
 class PropertyBoundValue
          BoundValue that will retrieve a specific property from a bean.
 class RequiredBoundValue
          BoundValue that converts required attribute from boolean into value uix expects
 class URLBoundValue
          BoundValue that handles context-relative URLs.
 

Constructors in org.apache.myfaces.trinidadinternal.uinode.bind with parameters of type BoundValue
URLBoundValue(BoundValue base)
           
 

Uses of BoundValue in org.apache.myfaces.trinidadinternal.uinode.nav
 

Methods in org.apache.myfaces.trinidadinternal.uinode.nav that return BoundValue
protected  BoundValue CommandLinkFacesBean.getPrimaryClientActionBoundValue(org.apache.myfaces.trinidad.component.UIXComponent component, BoundValue unvalidatedBV, BoundValue partialBV)
           
 

Methods in org.apache.myfaces.trinidadinternal.uinode.nav with parameters of type BoundValue
protected  BoundValue CommandLinkFacesBean.getPrimaryClientActionBoundValue(org.apache.myfaces.trinidad.component.UIXComponent component, BoundValue unvalidatedBV, BoundValue partialBV)
           
 



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