| org.apache.tapestry |
|
| Java Source File Name | Type | Comment |
| Asset.java | Interface | An Asset is any kind of resource that can be exposed to the client web browser. |
| BaseValidationDecorator.java | Class | Base implementation of
ValidationDecorator that does nothing. |
| Binding.java | Interface | A binding is a connection between a component and its container (another component), that allows
the embedded component to gain access to resources defined by the container. |
| Block.java | Interface | A block is a collection of static text and elements, and components, derived from a component
template. |
| BlockNotFoundException.java | Class | Exception thrown when a
Block is requested but not found. |
| ClientElement.java | Interface | Interface for any kind of object (typically, a component) that can provide a
ClientElement.getClientId() client-side id , typically used in the generation of client-side
(JavaScript) logic. |
| ComponentAction.java | Interface | An action that is associated with a component. |
| ComponentEventHandler.java | Interface | Handler for a
ComponentEvent , notified when a non-null value is returned from some event
handler method. |
| ComponentResources.java | Interface | Provides a component instance with the resources provided by the framework. |
| ComponentResourcesCommon.java | Interface | Operations shared by the public
ComponentResources interface and
ComponentPageElement interface (on the internal side). |
| Field.java | Interface | Defines a field within a form. |
| FieldValidator.java | Interface | Responsible for validation of a single field. |
| FormValidationControl.java | Interface | Allows control over validation concerns of a Form component. |
| Link.java | Interface | A link is the Tapestry representation of a URL or URI that triggers dynamic behavior. |
| MarkupWriter.java | Interface | An interface used by objects, such as Tapestry components, that need to render themselves as some
form of XML markup. |
| OptionGroupModel.java | Interface | Defines a group of related options. |
| OptionModel.java | Interface | A single option within a
OptionGroupModel . |
| PageRenderSupport.java | Interface | Provides support to all components that render. |
| PrimaryKeyEncoder.java | Interface | Used by
Loop and similar components to extract out an identifier, here termed a "primary
key", that can be stored on the client and later used to recover the same, or equivalent, server
side object. |
| PropertyConduit.java | Interface | Used to read or update the value associated with a property. |
| RadioContainer.java | Interface | |
| Renderable.java | Interface | Base interface for objects that can render markup output using a
org.apache.tapestry.MarkupWriter . |
| SelectModel.java | Interface | Defines the possible options and option groups for a <select> [X]HTML element.
Primarily used by the
Select component, but potentially used by anything similar, that
needs to present a list of options to the user. |
| SelectModelVisitor.java | Interface | Callback interface that allows for visiting the option groups and option models of a select model
in correct render order. |
| Stooge.java | enum | |
| StreamResponse.java | Interface | An alternate response from a component event handler method used to directly provide a stream of
data to be sent to the client, rather than indicating what page to send a render redirect request
to. |
| TapestryConstants.java | Class | Collection of common constant values used throughout Tapestry. |
| TapestryFilter.java | Class | The TapestryFilter is responsible for intercepting all requests into the web application. |
| TapestryUtils.java | Class | Utilities often needed when building Tapestry applications. |
| TapestryUtilsTest.java | Class | |
| Translator.java | Interface | Translates between client-side and server-side values. |
| ValidationDecorator.java | Interface | An object responsible for performing decorations around fields and field labels. |
| ValidationException.java | Class | An exception associated with parsing client input, or validating the input against a constraint. |
| ValidationTracker.java | Interface | Tracks information related to user input validations. |
| ValidationTrackerImpl.java | Class | Standard implmentation of
ValidationTracker . |
| ValidationTrackerImplTest.java | Class | |
| Validator.java | Interface | Used by a
Field to enforce a constraint related to a form submission. |
| ValueEncoder.java | Interface | Used by
Select (and similar components) to encode server side values into client-side
strings, and back. |