Uses of Interface
org.apache.tapestry.ITemplateComponent

Packages that use ITemplateComponent
org.apache.tapestry Tapestry is a comprehensive web application framework, written in Java. 
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.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.tree.components

The tapestry contributed tree component. 

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

Tree rendering components. 

org.apache.tapestry.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.html Components specific to the creation of HTML pages, including sophisticated DHTML JavaScript effects. 
org.apache.tapestry.pageload Classes used when loading pages (and thier heirarchies of components) from thier specifications, as well as organizaing thier templates. 
org.apache.tapestry.pages Basic pages used for errors, stale links and stale sessions. 
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl Service implementations. 
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 ITemplateComponent in org.apache.tapestry
 

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

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

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

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

Classes in org.apache.tapestry.contrib.form that implement ITemplateComponent
 class MaskEdit
          Provides a mask edit HTML <input type="text"> form element.
 

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

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

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

Classes in org.apache.tapestry.contrib.inspector that implement ITemplateComponent
 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.
 

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

Classes in org.apache.tapestry.contrib.palette that implement ITemplateComponent
 class Palette
          A component used to make a number of selections from a list.
 

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

Classes in org.apache.tapestry.contrib.table.components that implement ITemplateComponent
 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.
 

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

Classes in org.apache.tapestry.contrib.table.components.inserted that implement ITemplateComponent
 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 ITemplateComponent in org.apache.tapestry.contrib.tree.components
 

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

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

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

Uses of ITemplateComponent in org.apache.tapestry.engine
 

Methods in org.apache.tapestry.engine with parameters of type ITemplateComponent
 void IPageLoader.loadTemplateForComponent(IRequestCycle cycle, ITemplateComponent component)
          Invoked by a component (from within its IComponent.finishLoad(IRequestCycle, IPageLoader, IComponentSpecification)method) to load the template for the component.
 

Uses of ITemplateComponent in org.apache.tapestry.html
 

Classes in org.apache.tapestry.html that implement ITemplateComponent
 class BasePage
          Base class for HTML pages.
 class ExceptionDisplay
          Component used to display an already formatted exception.
 class RequestDisplay
          Supports the Exception page by displaying the request, session, servlet context and servlet object for the current request.
 

Uses of ITemplateComponent in org.apache.tapestry.pageload
 

Methods in org.apache.tapestry.pageload with parameters of type ITemplateComponent
 void PageLoader.loadTemplateForComponent(IRequestCycle cycle, ITemplateComponent component)
           
 

Uses of ITemplateComponent in org.apache.tapestry.pages
 

Classes in org.apache.tapestry.pages that implement ITemplateComponent
 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 ITemplateComponent in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services with parameters of type ITemplateComponent
 void ComponentTemplateLoader.loadTemplate(IRequestCycle requestCycle, ITemplateComponent loadComponent)
           
 

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

Methods in org.apache.tapestry.services.impl with parameters of type ITemplateComponent
 void ComponentTemplateLoaderImpl.loadTemplate(IRequestCycle requestCycle, ITemplateComponent loadComponent)
           
 void ComponentTemplateLoaderLogic.loadTemplate(IRequestCycle requestCycle, ITemplateComponent loadComponent, ComponentTemplate template)
           
 

Uses of ITemplateComponent in org.apache.tapestry.wml
 

Classes in org.apache.tapestry.wml that implement ITemplateComponent
 class Deck
          Concrete class for WML decks.
 

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

Classes in org.apache.tapestry.wml.pages that implement ITemplateComponent
 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.