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

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

Classes in org.apache.tapestry.coerce that implement IPropertySelectionModel
 class StringConvertedPropertySelectionModel
          IPropertySelectionModel created from a comma-seperated string by StringToPropertySelectionModelConverter.
 

Uses of IPropertySelectionModel in org.apache.tapestry.form
 

Classes in org.apache.tapestry.form that implement IPropertySelectionModel
 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
 IPropertySelectionModel LabeledPropertySelectionModel.getModel()
          Returns the underlying IPropertySelectionModel
abstract  IPropertySelectionModel PropertySelection.getModel()
           
 

Methods in org.apache.tapestry.form with parameters of type 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.
 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 SelectPropertySelectionRenderer.renderOption(PropertySelection component, IMarkupWriter writer, IRequestCycle cycle, IPropertySelectionModel model, java.lang.Object option, int index, boolean selected)
          Writes an <option> element.
 void LabeledPropertySelectionModel.setModel(IPropertySelectionModel model)
          Sets the underlying IPropertySelectionModel
 

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 PropertySelection.getModel()
           
abstract  IPropertySelectionModel SelectionField.getModel()