| org.apache.tapestry.RadioContainer
RadioContainer | public interface RadioContainer (Code) | | A container of
Radio components, used to identify the element name used when rendering
the individual radio buttons (all buttons in a group share the same element name) and to
|
Method Summary | |
String | getElementName() Returns the value used as the name attribute of the rendered element. | boolean | isDisabled() If true, then all buttons within the container should also be disabled. | boolean | isSelected(Object value) Returns true if the value is the current selected value. | String | toClient(Object value) Converts an object to a client-side string representation of that value. |
getElementName | String getElementName()(Code) | | Returns the value used as the name attribute of the rendered element. This value will be
unique within an enclosing form, even if the same component renders multiple times.
|
isDisabled | boolean isDisabled()(Code) | | If true, then all buttons within the container should also be disabled.
|
isSelected | boolean isSelected(Object value)(Code) | | Returns true if the value is the current selected value.
|
toClient | String toClient(Object value)(Code) | | Converts an object to a client-side string representation of that value.
Parameters: value - to convert (may be null) string representation of the value See Also: ValueEncoder.toClient(Object) |
|
|