com.sun.rave.web.ui.component
Interface SelectorManager

All Known Subinterfaces:
ListManager
All Known Implementing Classes:
AddRemove, AddRemoveBase, Checkbox, CheckboxBase, CheckboxGroup, CheckboxGroupBase, DropDown, DropDownBase, EditableList, Listbox, ListboxBase, ListSelector, ListSelectorBase, OrderableList, RadioButton, RadioButtonBase, RadioButtonGroup, RadioButtonGroupBase, RbCbSelector, RbCbSelectorBase, Selector

public interface SelectorManager


Method Summary
 java.lang.String getClientId(javax.faces.context.FacesContext context)
          JSF standard method from UIComponent
 java.lang.String getOnChange()
          Get the JS onchange event handler
 java.lang.String getStyle()
          CSS style(s) to be applied when this component is rendered.
 java.lang.String getStyleClass()
          CSS style(s) to be applied when this component is rendered.
 int getTabIndex()
          Get the tab index for the component
 boolean isDisabled()
          JSF standard method from UIComponent
 boolean isMultiple()
          Returns true if the component allows multiple selections
 boolean isReadOnly()
          Returns true if the component is readonly
 

Method Detail

getClientId

java.lang.String getClientId(javax.faces.context.FacesContext context)
JSF standard method from UIComponent

Parameters:
context - The FacesContext for the request
Returns:
The client id, also the JavaScript element id

isDisabled

boolean isDisabled()
JSF standard method from UIComponent

Returns:
true if the component is disabled

getOnChange

java.lang.String getOnChange()
Get the JS onchange event handler

Returns:
A string representing the JS event handler

getTabIndex

int getTabIndex()
Get the tab index for the component

Returns:
the tabindex

isMultiple

boolean isMultiple()
Returns true if the component allows multiple selections

Returns:
true if the component allows multiple selections

isReadOnly

boolean isReadOnly()
Returns true if the component is readonly

Returns:
true if the component is readonly

getStyle

java.lang.String getStyle()

CSS style(s) to be applied when this component is rendered.


getStyleClass

java.lang.String getStyleClass()

CSS style(s) to be applied when this component is rendered.

See Also:
getStyle()