Uses of Interface
org.apache.tapestry.IRender

Packages that use IRender
org.apache.tapestry Tapestry is a comprehensive web application framework, written in Java. 
org.apache.tapestry.components Basic, fundamental components used to construct more complex components, or pages. 
org.apache.tapestry.contrib.ajax

Ajax related contributions, things like Timeout and XTile allow a lot of common ajax functionality to be easily used. 

org.apache.tapestry.contrib.components Contribution of foundational components. 
org.apache.tapestry.contrib.form

Form controls for things liked masked input editing on text fields and multi property selection semantics. 

org.apache.tapestry.contrib.form.checkboxes

Additional checkbox controls, like grouping and controlled selections. 

org.apache.tapestry.contrib.inspector Implementation of the Tapestry Inspector, a specialized page used to dynamically introspect the construction of an application while it runs. 
org.apache.tapestry.contrib.palette

A powerful component for handling the very common case of moving elements from two different multi selection input boxes. 

org.apache.tapestry.contrib.table.components

Components that make up the core of the tapestry contrib's Table component. 

org.apache.tapestry.contrib.table.components.inserted

Table components that are dynamically inserted. 

org.apache.tapestry.contrib.table.model

All of the model interfaces defining the interactions for some of the table component semantics. 

org.apache.tapestry.contrib.table.model.common

Common model classes used in table. 

org.apache.tapestry.contrib.table.model.simple

Simple model classes for table. 

org.apache.tapestry.contrib.tree.components

The tapestry contributed tree component. 

org.apache.tapestry.contrib.tree.components.table

Tree rendering components. 

org.apache.tapestry.contrib.tree.model

Tree model classes/interfaces. 

org.apache.tapestry.contrib.tree.simple

Default set of model implementation classes for the Tree component. 

org.apache.tapestry.contrib.valid Backwards compatible versions of Tapestry 1.0.7's validating text fields, built as wrappers around the 1.0.8 versions. 
org.apache.tapestry.describe Services related to describing objects and graphs of objects; primarily used by the Exception page. 
org.apache.tapestry.dojo

Classes/utilities making up some of the core ajax functionality for tapestry. 

org.apache.tapestry.dojo.form Form related components that are wrapped by dojo widgets. 
org.apache.tapestry.dojo.html Html related components that are wrapped by dojo widgets. 
org.apache.tapestry.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.form Components for implementing basic HTML Forms. 
org.apache.tapestry.html Components specific to the creation of HTML pages, including sophisticated DHTML JavaScript effects. 
org.apache.tapestry.internal   
org.apache.tapestry.javascript

Classes/services for handling javascipr libraries. 

org.apache.tapestry.link Components for creating links on the page that trigger application behavior when clicked. 
org.apache.tapestry.pages Basic pages used for errors, stale links and stale sessions. 
org.apache.tapestry.parse Classes used when parsing templates, application and component specifications. 
org.apache.tapestry.scriptaculous   
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl Service implementations. 
org.apache.tapestry.valid Components and classes that provide specialized, validating text fields. 
org.apache.tapestry.wml Classes and components for main elements of the Wireless Markup Language (WML 1.2). 
org.apache.tapestry.wml.pages WML style pages. 
 

Uses of IRender in org.apache.tapestry
 

Subinterfaces of IRender in org.apache.tapestry
 interface IComponent
          Defines an object which may be used to provide dynamic content on a Tapestry web page.
 interface IDirect
          Interface that defines classes that may be messaged by the direct service.
 interface IDirectEvent
          Interface that defines classes that may be invoked directly by the event service.
 interface IExternalPage
          Defines a page which may be referenced externally via a URL using the ExternalService.
 interface IForm
          A generic way to access a component which defines an HTML form (or, perhaps, other similar constructs, such as a WML Go).
 interface IPage
          A root level component responsible for generating an entire a page within the application.
 interface ITemplateComponent
          Extra interface implemented by BaseComponent and inherited by BasePage, used to allow them to add contents from their templates.
 

Classes in org.apache.tapestry that implement IRender
 class AbstractComponent
          Abstract base class implementing the IComponentinterface.
 class AbstractPage
          Abstract base class implementing the IPageinterface.
 class BaseComponent
          Base implementation for most components that use an HTML template.
 

Fields in org.apache.tapestry declared as IRender
protected  IRender[] AbstractComponent._body
          An aray of elements in the body of this component.
 

Methods in org.apache.tapestry that return IRender
 IRender[] AbstractComponent.getBody()
          Returns the body of the component, the element (which may be static HTML or components) that the component immediately wraps.
 IRender[] BaseComponent.getContainedRenderers()
           
 IRender[] AbstractComponent.getContainedRenderers()
           
 IRender[] BaseComponent.getInnerRenderers()
           
 IRender[] AbstractComponent.getInnerRenderers()
           
 IRender IRequestCycle.renderStackPeek()
          Looks at the object at the top of the render stack without removing the IRender from the stack.
 IRender IRequestCycle.renderStackPop()
          Removes the IRender at the top of the stack, if any.
 IRender IRequestCycle.renderStackPush(IRender render)
          Pushes the specified render onto the current render stack.
 

Methods in org.apache.tapestry with parameters of type IRender
 void AbstractComponent.addBody(IRender element)
          Adds an element (which may be static text or a component) as a body element of this component.
 void IComponent.addBody(IRender element)
          Adds a new renderable element to the receiver's body.
 void BaseComponent.addOuter(IRender element)
          Adds an element as an outer element for the receiver.
 void ITemplateComponent.addOuter(IRender render)
          Adds an "outer" renderable object.
 IRender IRequestCycle.renderStackPush(IRender render)
          Pushes the specified render onto the current render stack.
 int IRequestCycle.renderStackSearch(IRender render)
          Returns the 1-based position where an object is on this stack.
 

Uses of IRender in org.apache.tapestry.components
 

Subinterfaces of IRender in org.apache.tapestry.components
 interface ILinkComponent
          A component that renders an HTML <a> element.
 

Classes in org.apache.tapestry.components that implement IRender
 class Any
          A component that can substitute for any HTML element.
 class Block
          Prevents its contents from being rendered until triggered by an RenderBlock component.
 class BlockRenderer
          An implementation of IRender that renders a Block component.
 class Conditional
          A conditional element on a page which will render its wrapped elements zero or one times.
 class Delegator
          A component which delegates it's behavior to another object.
 class ElseBean
           
 class ForBean
           
 class IfBean
           
 class Insert
          Used to insert some text (from a parameter) into the HTML.
 class InvokeListener
          Invokes a listener method, passing listener parameters.
 class RenderBlock
          Renders the text and components wrapped by a Blockcomponent.
 class RenderBody
          Renders the text and components wrapped by a component.
 

Methods in org.apache.tapestry.components that return IRender
 IRender[] RenderBody.getContainedRenderers()
           
abstract  IRender Delegator.getDelegate()
           
 

Uses of IRender in org.apache.tapestry.contrib.ajax
 

Classes in org.apache.tapestry.contrib.ajax that implement IRender
 class AjaxStatus
           
 class Timeout
           
 class XTile
           
 

Uses of IRender in org.apache.tapestry.contrib.components
 

Classes in org.apache.tapestry.contrib.components that implement IRender
 class Choose
          This component is a container for When or Otherwise components; it provides the context for mutually exclusive conditional evaluation.
 class DumpObject
          Used to dump out an object's serialized representation in a mix of hex and ascii.
 class When
          Represents an alternative whithin a Choose component.
 

Methods in org.apache.tapestry.contrib.components with parameters of type IRender
 void Choose.addBody(IRender element)
           
 

Uses of IRender in org.apache.tapestry.contrib.form
 

Classes in org.apache.tapestry.contrib.form that implement IRender
 class FormConditional
          A conditional element on a page which will render its wrapped elements zero or one times.
 class MaskEdit
          Provides a mask edit HTML <input type="text"> form element.
 class MultiplePropertySelection
          A component which uses <input type=checkbox> to set a property of some object.
 

Uses of IRender in org.apache.tapestry.contrib.form.checkboxes
 

Classes in org.apache.tapestry.contrib.form.checkboxes that implement IRender
 class CheckboxGroup
           
 class ControlCheckbox
           
 class ControlledCheckbox
           
 

Uses of IRender in org.apache.tapestry.contrib.inspector
 

Classes in org.apache.tapestry.contrib.inspector that implement IRender
 class Inspector
          The Tapestry Inspector page.
 class InspectorButton
          Component that can be placed into application pages that will launch the inspector in a new window.
 class Selector
          Component of the Inspector page used to select the page and "crumb trail" of the inspected component.
 class ShowEngine
          Component of the Inspector page used to display the properties of the IEngine as well as a serialized view of it.
 class ShowProperties
          Component of the Inspectorpage used to display the persisent properties of the page.
 class ShowSpecification
          Component of the Inspector page used to display the specification, parameters and bindings and assets of the inspected component.
 class ShowTemplate
          Component of the Inspectorpage used to display the ids and types of all embedded components.
 class ViewTabs
          Component of the Inspector page used to select the view.
 

Methods in org.apache.tapestry.contrib.inspector that return IRender
 IRender ShowTemplate.getTemplateDelegate()
           
 

Uses of IRender in org.apache.tapestry.contrib.palette
 

Classes in org.apache.tapestry.contrib.palette that implement IRender
 class Palette
          A component used to make a number of selections from a list.
 class PaletteColumn
          One of the two columns in a Palette component: the left column lists available options, the right column lists the selected columns.
 class PaletteOption
          Used to hold options editable by a Palette component, so that they may be sorted into an appropriate order.
 

Uses of IRender in org.apache.tapestry.contrib.table.components
 

Classes in org.apache.tapestry.contrib.table.components that implement IRender
 class AbstractTableRowComponent
          The base implementation for a component that is wrapped by the TableRows component.
 class AbstractTableViewComponent
          The base implementation for a component that is wrapped by the TableView component.
 class FormTable
          A modified version of the facade component in the Table family.
 class Table
          The facade component in the Table family.
 class TableColumns
          A low level Table component that renders the column headers in the table.
 class TableFormPages
          A low level Table component that renders the pages in the table.
 class TableFormRows
          A low level Table component that generates the rows of the current page in the table.
 class TablePages
          A low level Table component that renders the pages in the table.
 class TableRows
          A low level Table component that generates the rows of the current page in the table.
 class TableValues
          A low level Table component that generates the columns in the current row in the table.
 class TableView
          A low level Table component that wraps all other low level Table components.
 

Methods in org.apache.tapestry.contrib.table.components that return IRender
 IRender TableColumns.getTableColumnRenderer()
          Returns the renderer to be used to generate the header of the current column.
 IRender TableValues.getTableValueRenderer()
          Returns the renderer to be used to generate the appearance of the current column.
 

Uses of IRender in org.apache.tapestry.contrib.table.components.inserted
 

Classes in org.apache.tapestry.contrib.table.components.inserted that implement IRender
 class SimpleTableColumnComponent
          A component that renders the default column header.
 class SimpleTableColumnFormComponent
          A component that renders the default column header in a form.
 class SimpleTableColumnSortImage
          A component that renders the proper sort image for the current column - to be used with contrib:Table when customizing a column's header.
 class SimpleTableColumnSortLink
          A component that renders a sorting link - to be used with contrib:Table when customizing a column's header.
 

Uses of IRender in org.apache.tapestry.contrib.table.model
 

Subinterfaces of IRender in org.apache.tapestry.contrib.table.model
 interface ITableModelSource
          A Tapestry component that provides the current table model.
 interface ITableRendererListener
           
 

Methods in org.apache.tapestry.contrib.table.model that return IRender
 IRender ITableColumn.getColumnRenderer(IRequestCycle objCycle, ITableModelSource objSource)
          Method getColumnRenderer provides a renderer that takes care of rendering the column in the table header.
 IRender ITableRendererSource.getRenderer(IRequestCycle objCycle, ITableModelSource objSource, ITableColumn objColumn, Object objRow)
          Returns a renderer to present the data of the row in the given column.
 IRender ITableColumn.getValueRenderer(IRequestCycle objCycle, ITableModelSource objSource, Object objRow)
          Method getValueRenderer provides a renderer for presenting the value of a particular row in the current column.
 

Uses of IRender in org.apache.tapestry.contrib.table.model.common
 

Methods in org.apache.tapestry.contrib.table.model.common that return IRender
 IRender AbstractTableColumn.getColumnRenderer(IRequestCycle objCycle, ITableModelSource objSource)
           
 IRender BlockTableRendererSource.getRenderer(IRequestCycle objCycle, ITableModelSource objSource, ITableColumn objColumn, Object objRow)
           
 IRender ComponentTableRendererSource.getRenderer(IRequestCycle objCycle, ITableModelSource objSource, ITableColumn objColumn, Object objRow)
           
 IRender AbstractTableColumn.getValueRenderer(IRequestCycle objCycle, ITableModelSource objSource, Object objRow)
           
 

Uses of IRender in org.apache.tapestry.contrib.table.model.simple
 

Methods in org.apache.tapestry.contrib.table.model.simple that return IRender
 IRender SimpleTableColumnFormRendererSource.getRenderer(IRequestCycle objCycle, ITableModelSource objSource, ITableColumn objColumn, Object objRow)
           
 IRender SimpleTableValueRendererSource.getRenderer(IRequestCycle objCycle, ITableModelSource objSource, ITableColumn objColumn, Object objRow)
           
 IRender SimpleTableColumnRendererSource.getRenderer(IRequestCycle objCycle, ITableModelSource objSource, ITableColumn objColumn, Object objRow)
           
 

Uses of IRender in org.apache.tapestry.contrib.tree.components
 

Classes in org.apache.tapestry.contrib.tree.components that implement IRender
 class Tree
           
 class TreeDataView
           
 class TreeNodeView
           
 class TreeView
           
 

Methods in org.apache.tapestry.contrib.tree.components that return IRender
 IRender TreeNodeView.getCurrentRenderer()
           
 IRender INodeRenderFactory.getRender(Object objValue, ITreeModelSource objTreeModelSource, IRequestCycle objCycle)
           
 IRender INodeRenderFactory.getRenderByID(Object objUniqueKey, ITreeModelSource objTreeModelSource, IRequestCycle objCycle)
           
 

Uses of IRender in org.apache.tapestry.contrib.tree.components.table
 

Classes in org.apache.tapestry.contrib.tree.components.table that implement IRender
 class TreeTable
           
 class TreeTableDataView
           
 class TreeTableNodeViewDelegator
           
 

Methods in org.apache.tapestry.contrib.tree.components.table that return IRender
 IRender TreeTableValueRenderSource.getRenderer(IRequestCycle objCycle, ITableModelSource objSource, ITableColumn objColumn, Object objRow)
           
 IRender TreeTableColumn.getValueRenderer(IRequestCycle arg0, ITableModelSource arg1, Object arg2)
           
 

Uses of IRender in org.apache.tapestry.contrib.tree.model
 

Subinterfaces of IRender in org.apache.tapestry.contrib.tree.model
 interface ITreeModelSource
           
 

Methods in org.apache.tapestry.contrib.tree.model that return IRender
 IRender ITreeNodeManager.getRenderer(Object objUniqueKey, ITreeComponent objTreeComponent)
           
 

Uses of IRender in org.apache.tapestry.contrib.tree.simple
 

Methods in org.apache.tapestry.contrib.tree.simple that return IRender
 IRender SimpleNodeRenderFactory.getRender(Object objValue, ITreeModelSource objTreeModelSource, IRequestCycle objCycle)
           
 IRender SimpleNodeRenderFactory.getRenderByID(Object objUniqueKey, ITreeModelSource objTreeModelSource, IRequestCycle cycle)
           
 

Uses of IRender in org.apache.tapestry.contrib.valid
 

Classes in org.apache.tapestry.contrib.valid that implement IRender
 class DateField
          Backwards compatible version of the 1.0.7 DateField component.
 class NumericField
          Backwards compatible version of the 1.0.7 NumericField component.
 class ValidatingTextField
          Backwards compatible version of the 1.0.7 ValidatingTextField component.
 

Uses of IRender in org.apache.tapestry.describe
 

Classes in org.apache.tapestry.describe that implement IRender
 class RenderBridge
          Implements IRender for a particular object by delegating to a RenderStrategy.
 

Methods in org.apache.tapestry.describe that return IRender
 IRender RenderableAdapterFactory.getRenderableAdaptor(Object object)
          Returns an object that can render the input object.
 IRender RenderableAdapterFactoryImpl.getRenderableAdaptor(Object object)
          Returns a new instance of RenderBridge.
 

Uses of IRender in org.apache.tapestry.dojo
 

Subinterfaces of IRender in org.apache.tapestry.dojo
 interface IWidget
          Represents a tapestry component that delegates part of its functionality / UI to a corresponding browser dojo widget instance.
 

Classes in org.apache.tapestry.dojo that implement IRender
 class AbstractWidget
          The base widget class for all dojo related widget components.
 class AjaxShellDelegate
          The default rendering delegate responsible for include the dojo sources in to the Shell component.
 

Uses of IRender in org.apache.tapestry.dojo.form
 

Subinterfaces of IRender in org.apache.tapestry.dojo.form
 interface IFormWidget
          Represents an html input field managed by a dojo widget.
 

Classes in org.apache.tapestry.dojo.form that implement IRender
 class AbstractFormWidget
          Represents a dojo widget that manages an html form input field.
 class Autocompleter
          An html field similar to a select input field that is wrapped by a dojo ComboBox widget.
 class DropdownDatePicker
          Implementation of the dojo DropdownDatePicker widget as a tapestry component.
 class DropdownTimePicker
          Implementation of the dojo DropdownTimePicker widget as a tapestry component.
 class GTimePicker
          Implementation of an html form input field that has a dynamic drop down selection list of time segments displayed in the IPage's Locale.
 

Uses of IRender in org.apache.tapestry.dojo.html
 

Classes in org.apache.tapestry.dojo.html that implement IRender
 class Dialog
          Implementation of dojo Dialog widget.
 class InlineEditBox
          Wraps a dojo InlineEditBox widget.
 class ScriptIncludes
          This component that can be used instead of the Shell, mainly for situations where you either don't use the Shell component or can't because you are writing portlets.
 

Methods in org.apache.tapestry.dojo.html that return IRender
abstract  IRender ScriptIncludes.getAjaxDelegate()
           
abstract  IRender ScriptIncludes.getDelegate()
           
 

Uses of IRender in org.apache.tapestry.engine
 

Methods in org.apache.tapestry.engine that return IRender
 IRender RequestCycle.renderStackPeek()
          Looks at the object at the top of the render stack without removing the IRender from the stack.
 IRender RequestCycle.renderStackPop()
          Removes the IRender at the top of the stack, if any.
 IRender RequestCycle.renderStackPush(IRender render)
          Pushes the specified render onto the current render stack.
 

Methods in org.apache.tapestry.engine with parameters of type IRender
 IRender RequestCycle.renderStackPush(IRender render)
          Pushes the specified render onto the current render stack.
 int RequestCycle.renderStackSearch(IRender render)
          Returns the 1-based position where an object is on this stack.
 

Uses of IRender in org.apache.tapestry.form
 

Subinterfaces of IRender in org.apache.tapestry.form
 interface IFormComponent
          A common interface implemented by all form components (components that create interactive elements in the rendered page).
 interface TranslatedField
          Represents an input field that can be translated.
 interface ValidatableField
          Implemented by form components that can need to be translated and validated.
 interface ValidatableFieldExtension
          Marker interface for components that would like to override the default logic used to render validation contributions made for client side form validation.
 

Classes in org.apache.tapestry.form that implement IRender
 class AbstractFormComponent
          A base class for building components that correspond to HTML form elements.
 class Button
          Implements a component that manages an HTML <button> form element.
 class Checkbox
          Implements a component that manages an HTML <input type=checkbox> form element.
 class DatePicker
          Provides a Form java.util.Date field component for selecting dates.
 class Form
          Component which contains form element components.
 class Hidden
          Implements a hidden field within a Form.
 class ImageSubmit
          Used to create an image button inside a Form.
 class LinkSubmit
          Implements a component that submits its enclosing form via a JavaScript link.
 class ListEdit
          A specialized component used to edit a list of items within a form; it is similar to a ForBean but leverages hidden inputs within the <form> to store the items in the list.
 class Option
          A component that renders an HTML <option> form element.
 class PropertySelection
          A component used to render a drop-down list of options that the user may select.
 class Radio
          Implements a component that manages an HTML <input type=radio> form element.
 class RadioGroup
          A special type of form component that is used to contain Radiocomponents.
 class Select
          Implements a component that manages an HTML <select> form element.
 class Submit
          Implements a component that manages an HTML <input type=submit> form element.
 class TextArea
          Implements a component that manages an HTML <textarea> form element.
 class TextField
          Implements a component that manages an HTML <input type=text> or <input type=password> form element.
 class Upload
          Form element used to upload files.
 

Methods in org.apache.tapestry.form with parameters of type IRender
 void FormSupportImpl.render(String method, IRender informalParametersRenderer, ILink link, String scheme, Integer port)
           
 void FormSupport.render(String method, IRender informalParametersRenderer, ILink link, String scheme, Integer port)
          Invoked when the form is rendering.
 

Uses of IRender in org.apache.tapestry.html
 

Classes in org.apache.tapestry.html that implement IRender
 class BasePage
          Base class for HTML pages.
 class Body
          The body of a Tapestry page.
 class Describe
          Component that makes use of HTMLDescriberto produce HTML output that describes an object.
 class ExceptionDisplay
          Component used to display an already formatted exception.
 class Frame
          Implements a <frame> within a <frameset>.
 class Image
          Used to insert an image.
 class InsertText
          Inserts formatted text (possibly collected using a TextArea component.
 class Relation
          Works with the Shell component to define and append a relationship between documents (typically a stylesheet) to the HTML response.
 class RequestDisplay
          Supports the Exception page by displaying the request, session, servlet context and servlet object for the current request.
 class Rollover
          Combines a link component (such as DirectLink) with an <img> and JavaScript code to create a rollover effect that works with both Netscape Navigator and Internet Explorer.
 class Script
          Works with the Bodycomponent to add a script (and perhaps some initialization) to the HTML response.
 class Shell
          Component for creating a standard 'shell' for a page, which comprises the <html> and <head> portions of the page.
 class Style
          Works with the Shell component to define and append either inline styles or stylesheet documents to the HTML response.
 

Methods in org.apache.tapestry.html that return IRender
abstract  IRender Shell.getAjaxDelegate()
           
abstract  IRender Shell.getBaseTagWriter()
           
abstract  IRender Shell.getDelegate()
           
 IRender RequestDisplay.getReportStatusRenderer()
           
 IRender RequestDisplay.getSystemPropertiesRenderer()
           
 

Uses of IRender in org.apache.tapestry.internal
 

Methods in org.apache.tapestry.internal that return IRender
 IRender[] Component.getContainedRenderers()
          Returns the list of of IRender elements contained by this component.
 IRender[] Component.getInnerRenderers()
          In some rare cases a component has both outer and inner renderers - such as with BaseComponent.
 

Uses of IRender in org.apache.tapestry.javascript
 

Classes in org.apache.tapestry.javascript that implement IRender
 class SimpleAjaxShellDelegate
          Outputs the main js packages and the tapestry js that are defined by the JavascriptManager service.
 

Uses of IRender in org.apache.tapestry.link
 

Classes in org.apache.tapestry.link that implement IRender
 class AbstractLinkComponent
          Base class for implementations of ILinkComponent.
 class DirectLink
          A component for creating a link using the direct service; used for actions that are not dependant on dynamic page state.
 class ExternalLink
          A component for creating a link to IExternalPageusing the ExternalService.
 class GenericLink
          An implementation of ILinkComponent that allows the exact HREF to be specified, usually used for client side scripting.
 class PageLink
          A component for creating a navigation link to another page, using the page service.
 class ServiceLink
          A component for creating a link for an arbitrary engine service.
 

Uses of IRender in org.apache.tapestry.pages
 

Classes in org.apache.tapestry.pages that implement IRender
 class Exception
          Default exception reporting page.
 class StaleLink
          Stores a message (taken from the StaleLinkException) that is displayed as part of the page.
 

Uses of IRender in org.apache.tapestry.parse
 

Classes in org.apache.tapestry.parse that implement IRender
 class TextToken
          Represents static text in the template that may be passed through to the client unchanged (except, perhaps, for the removal of some whitespace).
 

Uses of IRender in org.apache.tapestry.scriptaculous
 

Classes in org.apache.tapestry.scriptaculous that implement IRender
 class Suggest
          Implementation of the Ajax.Autocompleter in the form of a TextField like component with the additional ability to dynamically suggest values via XHR requests.
 

Uses of IRender in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services with parameters of type IRender
 void ResponseBuilder.render(IMarkupWriter writer, IRender render, IRequestCycle cycle)
          Invoked to render a renderable object.
 

Uses of IRender in org.apache.tapestry.services.impl
 

Classes in org.apache.tapestry.services.impl that implement IRender
 class BaseTagWriter
          Contains code needed to render the <base> tag for pages.
 class LocalizedStringRender
          A class used with invisible localizations.
 

Methods in org.apache.tapestry.services.impl with parameters of type IRender
 void DojoAjaxResponseBuilder.render(IMarkupWriter writer, IRender render, IRequestCycle cycle)
          Invoked to render a renderable object.
 void DefaultResponseBuilder.render(IMarkupWriter writer, IRender render, IRequestCycle cycle)
          Invoked to render a renderable object.
 void PrototypeResponseBuilder.render(IMarkupWriter writer, IRender render, IRequestCycle cycle)
          Invoked to render a renderable object.
 void JSONResponseBuilder.render(IMarkupWriter writer, IRender render, IRequestCycle cycle)
          Invoked to render a renderable object.
 

Uses of IRender in org.apache.tapestry.valid
 

Classes in org.apache.tapestry.valid that implement IRender
 class FieldLabel
          Used to label an IFormComponent.
 class RenderString
          A wrapper around String that allows the String to be renderred.
 class ValidField
          A Formcomponent that creates a text field that allows for validation of user input and conversion between string and object values.
 

Methods in org.apache.tapestry.valid that return IRender
 IRender FieldTracking.getErrorRenderer()
           
 IRender IFieldTracking.getErrorRenderer()
          Returns an object that will render the error message.
 IRender ValidatorException.getErrorRenderer()
          Returns the error renderer for this exception, which may be null.
 IRender ValidationDelegate.getFirstError()
          A convienience, as most pages just show the first error on the page.
 

Methods in org.apache.tapestry.valid with parameters of type IRender
 void IValidationDelegate.record(IRender errorRenderer, ValidationConstraint constraint)
          Records an error in the current component, or an unassociated error.
 void ValidationDelegate.record(IRender errorRenderer, ValidationConstraint constraint)
          Records error information about the currently selected component, or records unassociated (with any field) errors.
 void FieldTracking.setErrorRenderer(IRender value)
           
 

Constructors in org.apache.tapestry.valid with parameters of type IRender
ValidatorException(String errorMessage, IRender errorRenderer, ValidationConstraint constraint)
          Creates a new instance.
 

Uses of IRender in org.apache.tapestry.wml
 

Classes in org.apache.tapestry.wml that implement IRender
 class AbstractPostfield
          A base class for building components that correspond to WML postfield elements.
 class Card
          A deck contains a collection of cards.
 class Deck
          Concrete class for WML decks.
 class Do
          The do element provides a general mechanism for the user to act upon the current card, in other words a card-level user interface element.
 class Go
          The go element declares a go task, indicating navigation to a URI.
 class Input
          The Input element specifies a text entry object.
 class OnEvent
          The onevent element binds a task to a particular intrinsic event for the immediately enclosing element, ie, specifying an onevent element inside an "XYZ" element associates an intrinsic event binding with the "XYZ" element.
 class Postfield
          The postfield element specifies a field name and value for transmission to an origin server during a URL request.
 class SelectionField
          SelectionField specifies a postfield element and it is used to complement the PropertySelectioncomponent.
 class Setvar
          The setvar element specifies the variable to set in the current browser context as a side effect of executing a task.
 class Timer
          The Timer element declares a card timer, which exposes a means of processing inactivity or idle time.
 

Uses of IRender in org.apache.tapestry.wml.pages
 

Classes in org.apache.tapestry.wml.pages that implement IRender
 class WMLException
          Default exception reporting page for WML applications.
 class WMLStaleLink
          Stores a message (taken from the StaleLinkException) that is displayed as part of the page.
 



Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.