org.apache.myfaces.custom.selectOneRow
Class SelectOneRow

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 org.apache.myfaces.custom.selectOneRow.AbstractSelectOneRow
                      extended by org.apache.myfaces.custom.selectOneRow.SelectOneRow
All Implemented Interfaces:
javax.faces.component.EditableValueHolder, javax.faces.component.StateHolder, javax.faces.component.ValueHolder, AlignProperty

public class SelectOneRow
extends AbstractSelectOneRow


Field Summary
static java.lang.String COMPONENT_FAMILY
           
static java.lang.String COMPONENT_TYPE
           
static java.lang.String DEFAULT_RENDERER_TYPE
           
 
Fields inherited from class javax.faces.component.UIInput
CONVERSION_MESSAGE_ID, REQUIRED_MESSAGE_ID, UPDATE_MESSAGE_ID
 
Fields inherited from class javax.faces.component.UIComponent
bindings
 
Constructor Summary
SelectOneRow()
           
 
Method Summary
 java.lang.String getAlign()
          HTML: Specifies the horizontal alignment of this element.
 java.lang.String getFamily()
           
 java.lang.String getGroupName()
          The Name of the radio-button-group to use
 java.lang.String getOnblur()
          HTML: Specifies a script to be invoked when the element loses focus.
 java.lang.String getOnchange()
          HTML: Specifies a script to be invoked when the element is modified.
 java.lang.String getOnclick()
          HTML: Script to be invoked when the element is clicked.
 java.lang.String getOnfocus()
          HTML: Specifies a script to be invoked when the element receives focus.
 java.lang.String getOnselect()
          HTML: Specifies a script to be invoked when the element is selected.
 boolean isDisabled()
          HTML: When true, this element cannot receive focus.
 boolean isReadonly()
          HTML: When true, indicates that this component cannot be modified by the user.
 void restoreState(javax.faces.context.FacesContext facesContext, java.lang.Object state)
           
 java.lang.Object saveState(javax.faces.context.FacesContext facesContext)
           
 void setAlign(java.lang.String align)
           
 void setDisabled(boolean disabled)
           
 void setGroupName(java.lang.String groupName)
           
 void setOnblur(java.lang.String onblur)
           
 void setOnchange(java.lang.String onchange)
           
 void setOnclick(java.lang.String onclick)
           
 void setOnfocus(java.lang.String onfocus)
           
 void setOnselect(java.lang.String onselect)
           
 void setReadonly(boolean readonly)
           
 
Methods inherited from class javax.faces.component.UIInput
addValidator, addValueChangeListener, broadcast, compareValues, decode, getConvertedValue, getConverterMessage, getRequiredMessage, getSubmittedValue, getValidator, getValidatorMessage, getValidators, getValueChangeListener, getValueChangeListeners, isImmediate, isLocalValueSet, isRequired, isValid, processDecodes, processUpdates, processValidators, removeValidator, removeValueChangeListener, resetValue, setConverterMessage, setImmediate, setLocalValueSet, setRequired, setRequiredMessage, setSubmittedValue, setValid, setValidator, setValidatorMessage, setValue, setValueChangeListener, updateModel, validate, validateValue
 
Methods inherited from class javax.faces.component.UIOutput
getConverter, getLocalValue, getValue, setConverter
 
Methods inherited from class javax.faces.component.UIComponentBase
addFacesListener, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributes, getChildCount, getChildren, getClientId, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacets, getFacetsAndChildren, getId, getParent, getRenderer, getRendererType, getRendersChildren, getValueBinding, invokeOnComponent, isRendered, isTransient, processRestoreState, processSaveState, queueEvent, removeFacesListener, restoreAttachedState, saveAttachedState, setId, setParent, setRendered, setRendererType, setTransient, setValueBinding
 
Methods inherited from class javax.faces.component.UIComponent
encodeAll, getContainerClientId, getValueExpression, setValueExpression
 
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, getValue, setConverter
 

Field Detail

COMPONENT_FAMILY

public static final java.lang.String COMPONENT_FAMILY
See Also:
Constant Field Values

COMPONENT_TYPE

public static final java.lang.String COMPONENT_TYPE
See Also:
Constant Field Values

DEFAULT_RENDERER_TYPE

public static final java.lang.String DEFAULT_RENDERER_TYPE
See Also:
Constant Field Values
Constructor Detail

SelectOneRow

public SelectOneRow()
Method Detail

getFamily

public java.lang.String getFamily()
Overrides:
getFamily in class javax.faces.component.UIInput

getGroupName

public java.lang.String getGroupName()
Description copied from class: AbstractSelectOneRow
The Name of the radio-button-group to use

Specified by:
getGroupName in class AbstractSelectOneRow

setGroupName

public void setGroupName(java.lang.String groupName)

isDisabled

public boolean isDisabled()
Description copied from class: AbstractSelectOneRow
HTML: When true, this element cannot receive focus.

Specified by:
isDisabled in class AbstractSelectOneRow

setDisabled

public void setDisabled(boolean disabled)

isReadonly

public boolean isReadonly()
Description copied from class: AbstractSelectOneRow
HTML: When true, indicates that this component cannot be modified by the user. The element may receive focus unless it has also been disabled.

Specified by:
isReadonly in class AbstractSelectOneRow

setReadonly

public void setReadonly(boolean readonly)

getOnblur

public java.lang.String getOnblur()
Description copied from class: AbstractSelectOneRow
HTML: Specifies a script to be invoked when the element loses focus.

Specified by:
getOnblur in class AbstractSelectOneRow

setOnblur

public void setOnblur(java.lang.String onblur)

getOnfocus

public java.lang.String getOnfocus()
Description copied from class: AbstractSelectOneRow
HTML: Specifies a script to be invoked when the element receives focus.

Specified by:
getOnfocus in class AbstractSelectOneRow

setOnfocus

public void setOnfocus(java.lang.String onfocus)

getOnchange

public java.lang.String getOnchange()
Description copied from class: AbstractSelectOneRow
HTML: Specifies a script to be invoked when the element is modified.

Specified by:
getOnchange in class AbstractSelectOneRow

setOnchange

public void setOnchange(java.lang.String onchange)

getOnselect

public java.lang.String getOnselect()
Description copied from class: AbstractSelectOneRow
HTML: Specifies a script to be invoked when the element is selected.

Specified by:
getOnselect in class AbstractSelectOneRow

setOnselect

public void setOnselect(java.lang.String onselect)

getOnclick

public java.lang.String getOnclick()
Description copied from class: AbstractSelectOneRow
HTML: Script to be invoked when the element is clicked.

Specified by:
getOnclick in class AbstractSelectOneRow

setOnclick

public void setOnclick(java.lang.String onclick)

getAlign

public java.lang.String getAlign()
Description copied from interface: AlignProperty
HTML: Specifies the horizontal alignment of this element. Deprecated in HTML 4.01.


setAlign

public void setAlign(java.lang.String align)

saveState

public java.lang.Object saveState(javax.faces.context.FacesContext facesContext)
Specified by:
saveState in interface javax.faces.component.StateHolder
Overrides:
saveState in class javax.faces.component.UIInput

restoreState

public void restoreState(javax.faces.context.FacesContext facesContext,
                         java.lang.Object state)
Specified by:
restoreState in interface javax.faces.component.StateHolder
Overrides:
restoreState in class javax.faces.component.UIInput


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