javax.faces.component
Class UISelectBoolean

java.lang.Object
  extended by javax.faces.component.UIComponent
      extended by javax.faces.component.UIComponentBase
          extended by javax.faces.component.UIOutput
              extended by javax.faces.component.UIInput
                  extended by javax.faces.component.UISelectBoolean
All Implemented Interfaces:
EditableValueHolder, StateHolder, ValueHolder

public class UISelectBoolean
extends UIInput

A component that allows the user to select or unselect an object.

This can also be used to choose between two states such as true/false or on/off.

See the javadoc for this class in the JSF Specification for further details.

Version:
$Revision: 685669 $ $Date: 2008-08-13 15:25:49 -0500 (Wed, 13 Aug 2008) $
Author:
Manfred Geiler (latest modification by $Author: skitching $)

Field Summary
static String COMPONENT_FAMILY
           
static String COMPONENT_TYPE
           
 
Fields inherited from class javax.faces.component.UIInput
CONVERSION_MESSAGE_ID, REQUIRED_MESSAGE_ID
 
Constructor Summary
UISelectBoolean()
           
 
Method Summary
 String getFamily()
           
 ValueBinding getValueBinding(String name)
          Get the named value-binding associated with this component.
 boolean isSelected()
           
 void setSelected(boolean selected)
           
 void setValueBinding(String name, ValueBinding binding)
          Put the provided value-binding into a map of value-bindings associated with this component.
 
Methods inherited from class javax.faces.component.UIInput
addValidator, addValueChangeListener, broadcast, compareValues, decode, getConvertedValue, getSubmittedValue, getValidator, getValidators, getValue, getValueChangeListener, getValueChangeListeners, isImmediate, isLocalValueSet, isRequired, isValid, processDecodes, processUpdates, processValidators, removeValidator, removeValueChangeListener, restoreState, saveState, setImmediate, setLocalValueSet, setRequired, setSubmittedValue, setValid, setValidator, setValue, setValueChangeListener, updateModel, validate, validateValue
 
Methods inherited from class javax.faces.component.UIOutput
getConverter, getLocalValue, setConverter
 
Methods inherited from class javax.faces.component.UIComponentBase
addFacesListener, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientId, getFacesContext, getFacesListeners, getFacet, getFacets, getFacetsAndChildren, getId, getParent, getRenderer, getRendererType, getRendersChildren, isRendered, isTransient, processRestoreState, processSaveState, queueEvent, removeFacesListener, restoreAttachedState, saveAttachedState, setId, setParent, setRendered, setRendererType, setTransient
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface javax.faces.component.ValueHolder
getConverter, getLocalValue, setConverter
 

Field Detail

COMPONENT_TYPE

public static final String COMPONENT_TYPE
See Also:
Constant Field Values

COMPONENT_FAMILY

public static final String COMPONENT_FAMILY
See Also:
Constant Field Values
Constructor Detail

UISelectBoolean

public UISelectBoolean()
Method Detail

getFamily

public String getFamily()
Overrides:
getFamily in class UIInput

isSelected

public boolean isSelected()

setSelected

public void setSelected(boolean selected)

getValueBinding

public ValueBinding getValueBinding(String name)
Description copied from class: UIComponentBase
Get the named value-binding associated with this component.

Value-bindings are stored in a map associated with the component, though there is commonly a property (setter/getter methods) of the same name defined on the component itself which evaluates the value-binding when called.

Overrides:
getValueBinding in class UIComponentBase

setValueBinding

public void setValueBinding(String name,
                            ValueBinding binding)
Description copied from class: UIComponentBase
Put the provided value-binding into a map of value-bindings associated with this component.

Overrides:
setValueBinding in class UIComponentBase


Copyright © 2012 The Apache Software Foundation. All Rights Reserved.