public interface ISelectItemProvider
Models individual select item data, (like a select-box option or a checkbox, etc.).
Implementations of this interface must extend javax.faces.model.SelectItem.
Modifier and Type | Method and Description |
---|---|
String |
getDescription()
Returns item's extended description, typically used in the UI as a tooltip
|
String |
getIcon()
Returns item's encoded icon URL.
|
String |
getLabel()
Returns item's display name, typically used in the UI to diplay this item
|
String |
getStyle()
Returns item's inline CSS style.
|
Object |
getValue()
Returns item's value, used for data binding, typically a unique identifier.
|
boolean |
isDisabled()
Returns true if item is disabled.
|
boolean |
isEscape()
Returns true if item label should be escaped.
|
Object getValue()
String getLabel()
String getDescription()
boolean isDisabled()
String getStyle()
String getIcon()
boolean isEscape()