Uses of Interface
org.apache.tapestry.form.IPropertySelectionModel

Packages that use IPropertySelectionModel
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 IPropertySelectionModel in org.apache.tapestry.form
 

Classes in org.apache.tapestry.form that implement IPropertySelectionModel
 class EnumPropertySelectionModel
          Implementation of IPropertySelectionModel that wraps around a set of Enums.
 class LabeledPropertySelectionModel
          Decorates an underlying IPropertySelectionModeladding an initial property.
 class StringPropertySelectionModel
          Implementation of IPropertySelectionModel that allows one String from an array of Strings to be selected as the property.
 

Methods in org.apache.tapestry.form that return IPropertySelectionModel
abstract  IPropertySelectionModel PropertySelection.getModel()
           
 IPropertySelectionModel LabeledPropertySelectionModel.getModel()
          Returns the underlying IPropertySelectionModel
 

Methods in org.apache.tapestry.form with parameters of type IPropertySelectionModel
 void SelectPropertySelectionRenderer.renderOption(PropertySelection component, IMarkupWriter writer, IRequestCycle cycle, IPropertySelectionModel model, java.lang.Object option, int index, boolean selected)
          Writes an <option> element.
 void RadioPropertySelectionRenderer.renderOption(PropertySelection component, IMarkupWriter writer, IRequestCycle cycle, IPropertySelectionModel model, java.lang.Object option, int index, boolean selected)
          Writes a row of the table.
 void LabeledPropertySelectionModel.setModel(IPropertySelectionModel model)
          Sets the underlying IPropertySelectionModel
 void IPropertySelectionRenderer.renderOption(PropertySelection component, IMarkupWriter writer, IRequestCycle cycle, IPropertySelectionModel model, java.lang.Object option, int index, boolean selected)
          Invoked for each element obtained from the model.
 

Constructors in org.apache.tapestry.form with parameters of type IPropertySelectionModel
LabeledPropertySelectionModel(IPropertySelectionModel model)
          Constructs a new LabeledPropertySelectionModel using the specified model and default label, option, and value.
LabeledPropertySelectionModel(IPropertySelectionModel model, java.lang.String label)
          Constructs a new LabeledPropertySelectionModel using the specified model and label, and default option and value.
LabeledPropertySelectionModel(IPropertySelectionModel model, java.lang.String label, java.lang.Object option)
          Constructs a new LabeledPropertySelectionModel using the specified model, label, and option; and default value.
LabeledPropertySelectionModel(IPropertySelectionModel model, java.lang.String label, java.lang.Object option, java.lang.String value)
          Constructs a new LabeledPropertySelectionModel using the specified model, label, option, and value.
 

Uses of IPropertySelectionModel in org.apache.tapestry.wml
 

Methods in org.apache.tapestry.wml that return IPropertySelectionModel
abstract  IPropertySelectionModel SelectionField.getModel()
           
abstract  IPropertySelectionModel PropertySelection.getModel()