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.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
static void TapestryUtils.storeForm(IRequestCycle cycle, IForm form)
          Store the IForm instance using TapestryUtils.storeUniqueAttribute(IRequestCycle, String, Object).
 void IRequestCycle.rewindForm(IForm form)
          Used by formsto perform a partial rewind so as to respond to the form submission (using the direct service).
 

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
 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.
static IForm Form.get(IRequestCycle cycle)
          Deprecated. Use TapestryUtils.getForm(IRequestCycle, IComponent) instead.
 IForm AbstractFormComponent.getForm(IRequestCycle cycle)
          Returns the Form wrapping this component.
abstract  IForm AbstractFormComponent.getForm()
           
 

Methods in org.apache.tapestry.form with parameters of type IForm
abstract  void AbstractFormComponent.setForm(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.
 

Methods in org.apache.tapestry.wml that return IForm
 IForm AbstractPostfield.getForm(IRequestCycle cycle)
          Returns the Gowrapping this component.
abstract  IForm AbstractPostfield.getForm()
           
 

Methods in org.apache.tapestry.wml with parameters of type IForm
abstract  void AbstractPostfield.setForm(IForm form)
           
 

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