|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RenderableComponent | |
---|---|
wheel | |
wheel.components | |
wheel.testing |
Uses of RenderableComponent in wheel |
---|
Subclasses of RenderableComponent in wheel | |
---|---|
class |
ErrorPage
Displays all unhandled exceptions if no error mapping or error page has been set in IEngine for the current request cycle. |
Uses of RenderableComponent in wheel.components |
---|
Subclasses of RenderableComponent in wheel.components | |
---|---|
class |
Any
This component can be used to present any tag that doesn't have any children nor content. |
class |
Block
Block is an all-purpose component that is used whenever you need a component that holds other (html) components. |
class |
Checkbox
Will render an <input type="checkbox"/> form element. |
class |
CheckboxGroup
CheckboxGroup makes it possible to select objects with checkboxes from an ISelectModel. |
class |
DateInput
A form element that can be used for handling Dates and Calendars. |
class |
FileInput
|
class |
Form
Represents an HTML form. |
class |
FormElement
All components that want to handle form input should extend from this class. |
class |
Hidden
Will render a <input type="hidden"/> tag. |
class |
Image
Renders an <img/> tag. |
class |
Label
Label is a component that is used whenever you need to output text. |
class |
Link
Represents a link either to another page inside the application or to an external URL. |
class |
NumberInput
A FormElement that knows how to handle numeric input. |
class |
Radio
Renders <input type="radio"/>. |
class |
RadioGroup
A form element that makes it possible to choose a single object from a collection of objects using radio buttons. |
class |
Select
A form element that makes it possible to choose a single object or multiple objects (using multiselect mode) from a collection of objects using the <select> element. |
class |
SelectModelFormElement
|
class |
StandaloneComponent
Defines the contract for complex components. |
class |
Submit
Renders an <input type="submit"/> tag. |
class |
Table
An XHTML-table that uses thead, tbody and tfoot. |
class |
TableBlock
A special case of a Block component that is used internally inside a Table-component. |
class |
TableRow
A component that represents a row in a table. |
class |
Text
Almost identical to Label-component. |
class |
TextArea
A form element that will render a <textarea> tag. |
class |
TextInput
A form element that renders an <input type="text"/> tag. |
class |
XmlEntityRef
|
Methods in wheel.components that return RenderableComponent | |
---|---|
RenderableComponent |
IEnhancingSelectModel.renderAfter(RenderableComponent component,
int index,
boolean selected)
A callback method that is called to enable adding components that will be rendered after the input element. |
RenderableComponent |
IEnhancingSelectModel.renderBefore(RenderableComponent component,
int index,
boolean selected)
A callback method that is called to enable adding components that will be rendered before the input element. |
Methods in wheel.components that return types with arguments of type RenderableComponent | |
---|---|
java.util.List<RenderableComponent> |
Component._getRenderableChildren()
Intended for internal use. |
java.util.List<RenderableComponent> |
RenderableComponent._getRenderAfterMe()
|
java.util.List<RenderableComponent> |
RenderableComponent._getRenderBeforeMe()
|
Methods in wheel.components with parameters of type RenderableComponent | |
---|---|
Component |
RenderableComponent.addRenderAfter(RenderableComponent renderable)
All renderables added y calling this method will be rendered after the component itself but the renderables will not be added to the component tree. |
Component |
RenderableComponent.addRenderBefore(RenderableComponent renderable)
All renderables added y calling this method will be rendered before the component itself but the renderables will not be added to the component tree. |
protected boolean |
SelectModelFormElement.enhance(RenderableComponent component,
boolean selected,
int index)
|
RenderableComponent |
IEnhancingSelectModel.renderAfter(RenderableComponent component,
int index,
boolean selected)
A callback method that is called to enable adding components that will be rendered after the input element. |
RenderableComponent |
IEnhancingSelectModel.renderBefore(RenderableComponent component,
int index,
boolean selected)
A callback method that is called to enable adding components that will be rendered before the input element. |
java.lang.String |
IEnhancingSelectModel.renderHint(RenderableComponent component,
int index,
boolean selected)
Allows you to add render hints to the input element. |
Constructors in wheel.components with parameters of type RenderableComponent | |
---|---|
RenderableComponentConfiguration(RenderableComponent forComponent)
|
Uses of RenderableComponent in wheel.testing |
---|
Subclasses of RenderableComponent in wheel.testing | |
---|---|
class |
MockPage
|
Methods in wheel.testing with parameters of type RenderableComponent | |
---|---|
protected void |
WheelTestCase.setComponent(RenderableComponent component)
Pre-requirement for using any of the methods in this class. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |