Uses of Interface
org.apache.tapestry.IForm

Packages that use IForm
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.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.form Components for implementing basic HTML Forms. 
org.apache.tapestry.wml Classes and components for main elements of the Wireless Markup Language (WML 1.2). 
 

Uses of IForm in org.apache.tapestry
 

Methods in org.apache.tapestry that return IForm
static IForm TapestryUtils.getForm(IRequestCycle cycle, IComponent component)
          Gets the previously stored IForm object.
 

Methods in org.apache.tapestry with parameters of type IForm
 void IRequestCycle.rewindForm(IForm form)
          Used by formsto perform a partial rewind so as to respond to the form submission (using the direct service).
static void TapestryUtils.storeForm(IRequestCycle cycle, IForm form)
          Store the IForm instance using TapestryUtils.storeUniqueAttribute(IRequestCycle, String, Object).
 

Uses of IForm in org.apache.tapestry.components
 

Methods in org.apache.tapestry.components with parameters of type IForm
protected  boolean IfBean.evaluateCondition(IRequestCycle cycle, IForm form, boolean cycleRewinding)
           
protected  java.util.Iterator ForBean.storeSourceData(IForm form, java.lang.String name)
          Stores the provided data in the form and then returns the data as an iterator.
 

Uses of IForm in org.apache.tapestry.engine
 

Methods in org.apache.tapestry.engine with parameters of type IForm
 void RequestCycle.rewindForm(IForm form)
          Rewinds an individual form by invoking rewind(IMarkupWriter, IRequestCycle).
 

Uses of IForm in org.apache.tapestry.form
 

Classes in org.apache.tapestry.form that implement IForm
 class Form
          Component which contains form element components.
 

Methods in org.apache.tapestry.form that return IForm
static IForm Form.get(IRequestCycle cycle)
          Deprecated. Use TapestryUtils.getForm(IRequestCycle, IComponent) instead.
abstract  IForm AbstractFormComponent.getForm()
           
 IForm IFormComponent.getForm()
          Returns the IForm which contains the component, or null if the component is not contained by a form, of if the containing Form is not currently renderring.
 

Methods in org.apache.tapestry.form with parameters of type IForm
abstract  void AbstractFormComponent.setForm(IForm form)
           
protected  void AbstractFormComponent.setName(IForm form)
           
protected  void ImageSubmit.setName(IForm form)
           
 

Constructors in org.apache.tapestry.form with parameters of type IForm
FormSupportImpl(IMarkupWriter writer, IRequestCycle cycle, IForm form)
           
 

Uses of IForm in org.apache.tapestry.wml
 

Classes in org.apache.tapestry.wml that implement IForm
 class Go
          The go element declares a go task, indicating navigation to a URI.
 

Constructors in org.apache.tapestry.wml with parameters of type IForm
GoFormSupportImpl(IMarkupWriter writer, IRequestCycle cycle, IForm form)