Package org.apache.tapestry5.internal
Class OptionModelImpl
- java.lang.Object
 - 
- org.apache.tapestry5.AbstractOptionModel
 - 
- org.apache.tapestry5.internal.OptionModelImpl
 
 
 
- 
- All Implemented Interfaces:
 OptionModel
public class OptionModelImpl extends AbstractOptionModel
 
- 
- 
Constructor Summary
Constructors Constructor Description OptionModelImpl(String value)Constructor for when the value and the label are the same.OptionModelImpl(String label, Object value) 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()The localized, user-presentable label for the option.ObjectgetValue()The server-side value represented by this option.StringtoString()- 
Methods inherited from class org.apache.tapestry5.AbstractOptionModel
getAttributes, isDisabled 
 - 
 
 - 
 
- 
- 
Constructor Detail
- 
OptionModelImpl
public OptionModelImpl(String value)
Constructor for when the value and the label are the same. 
- 
OptionModelImpl
public OptionModelImpl(String label, Object value)
 
 - 
 
- 
Method Detail
- 
getLabel
public String getLabel()
Description copied from interface:OptionModelThe localized, user-presentable label for the option. 
- 
getValue
public Object getValue()
Description copied from interface:OptionModelThe server-side value represented by this option. This is used to determine which option will be selected. It is also used, viaValueEncoder.toClient(Object), to generate the client-side value attribute. 
 - 
 
 -