| |
|
| java.lang.Object uk.org.ponder.rsf.components.UIComponent uk.org.ponder.rsf.components.UISwitch
UISwitch | public class UISwitch extends UIComponent (Code) | | A "placeholder" component (similar to UIReplicator) implementing a boolean
test. Based on whether two object values (the lvalue and the rvalue) compare
equal by means of Java Object.equals(), one of two genuine components specified
in a serialized "proto-tree" will be placed in the view tree prior to rendering.
author: Antranig Basman (amb26@ponder.org.uk) |
falsecomponent | public UIComponent falsecomponent(Code) | | The component to be rendered if the lvalue and rvalue do not compare equal
|
lvalue | public Object lvalue(Code) | | The lvalue to form the basis of the comparison. If this is an instance of
ELReference, this will cause the value to be fetched from the request container.
|
rvalue | public Object rvalue(Code) | | The rvalue to form the basis of the comparison. If this is an instance of
ELReference, this will cause the value to be fetched from the request container.
|
truecomponent | public UIComponent truecomponent(Code) | | The component to be rendered if the lvalue and rvalue compare equal
|
|
|
|