| java.lang.Object uk.org.ponder.rsf.components.UIComponent uk.org.ponder.rsf.components.UIBound uk.org.ponder.rsf.components.UIBoundString uk.org.ponder.rsf.components.UIOutput
UIOutput | public class UIOutput extends UIBoundString (Code) | | A UIOutput holds a single String value, which may or may not be bound to an
EL value binding. It may peer with essentially any tag, since its operation
is to replace the tag body with the text value it holds, if
this value is not null.
The central prototype of all components.
author: Antranig Basman (antranig@caret.cam.ac.uk) |
Method Summary | |
public static UIOutput | make(UIContainer parent, String ID, String initvalue, String binding) Constructs a text field which is bound to a particular path in the bean
model. | public static UIOutput | make(UIContainer parent, String ID, String initvalue) Constructs an unbound text field with the specified initial value. | public static UIOutput | make(UIContainer parent, String ID) This constructor creates an output component that will simply select a
message already present in the template, free from any further interaction
with the code. | public static UIOutput | make(String initvalue) Constructor for a standalone UIOutput that will be added to the tree
later. |
make | public static UIOutput make(UIContainer parent, String ID, String initvalue, String binding)(Code) | | Constructs a text field which is bound to a particular path in the bean
model. If the initial value is set to null (recommended), it
will be fetched automatically from the bean model during fixup.
|
make | public static UIOutput make(UIContainer parent, String ID, String initvalue)(Code) | | Constructs an unbound text field with the specified initial value. This
will not interact with the bean model in any way.
|
make | public static UIOutput make(UIContainer parent, String ID)(Code) | | This constructor creates an output component that will simply select a
message already present in the template, free from any further interaction
with the code.
|
make | public static UIOutput make(String initvalue)(Code) | | Constructor for a standalone UIOutput that will be added to the tree
later.
|
|
|