public class UIXSelectInput extends UIXEditableValue implements javax.faces.component.ActionSource2, javax.faces.component.ActionSource
Type | Phases | Description |
---|---|---|
javax.faces.event.ActionEvent |
Apply Request Values | Event delivered when the "action" of the component has been invoked; for example, by clicking on a button. The action may result in page navigation. |
org.apache.myfaces.trinidad.event.ReturnEvent |
Apply Request Values | Event delivered when the dialog has completed successfully. |
javax.faces.event.ValueChangeEvent |
Process Validations Apply Request Values |
The valueChange event is delivered when the value attribute is changed. |
org.apache.myfaces.trinidad.event.AttributeChangeEvent |
Invoke Application Apply Request Values |
Event delivered to describe an attribute change. Attribute change events are not delivered for any programmatic change to a property. They are only delivered when a renderer changes a property without the application's specific request. An example of an attribute change events might include the width of a column that supported client-side resizing. |
Modifier and Type | Field and Description |
---|---|
static PropertyKey |
ACTION_EXPRESSION_KEY |
static PropertyKey |
ACTION_LISTENER_KEY |
static String |
COMPONENT_FAMILY |
static String |
COMPONENT_TYPE |
static PropertyKey |
RETURN_LISTENER_KEY |
static FacesBean.Type |
TYPE |
CONVERSION_MESSAGE_ID, IMMEDIATE_KEY, LOCAL_VALUE_SET_KEY, REQUIRED_KEY, REQUIRED_MESSAGE_DETAIL_KEY, REQUIRED_MESSAGE_ID, SUBMITTED_VALUE_KEY, VALID_KEY, VALIDATOR_KEY, VALIDATORS_KEY, VALUE_CHANGE_LISTENER_KEY
CONVERTER_KEY, VALUE_KEY
BINDING_KEY, ID_KEY, RENDERED_KEY, RENDERER_TYPE_KEY, TRANSIENT_KEY
Modifier | Constructor and Description |
---|---|
|
UIXSelectInput()
Construct an instance of the UIXSelectInput.
|
protected |
UIXSelectInput(String rendererType)
Construct an instance of the UIXSelectInput.
|
Modifier and Type | Method and Description |
---|---|
void |
addActionListener(javax.faces.event.ActionListener listener)
Adds a action listener.
|
void |
addReturnListener(ReturnListener listener)
Adds a return listener.
|
void |
broadcast(javax.faces.event.FacesEvent event)
In addition to to the default
UIComponent.broadcast(javax.faces.event.FacesEvent)
processing, pass the ValueChangeEvent being broadcast to the
method referenced by valueChangeListener (if any). |
javax.faces.el.MethodBinding |
getAction() |
javax.el.MethodExpression |
getActionExpression()
Gets a reference to an action method sent by the commandButton, or the static outcome of an action
|
javax.faces.el.MethodBinding |
getActionListener()
Gets a method reference to an action listener
|
javax.faces.event.ActionListener[] |
getActionListeners()
Returns an array of attached action listeners.
|
protected FacesBean.Type |
getBeanType() |
String |
getFamily() |
javax.el.MethodExpression |
getReturnListener()
Gets a method reference to an return listener
|
ReturnListener[] |
getReturnListeners()
Returns an array of attached return listeners.
|
void |
queueEvent(javax.faces.event.FacesEvent e)
Intercept
queueEvent and mark the phaseId for any
ActionEvents to be PhaseId.APPLY_REQUEST_VALUES . |
void |
removeActionListener(javax.faces.event.ActionListener listener)
Removes a action listener.
|
void |
removeReturnListener(ReturnListener listener)
Removes a return listener.
|
void |
setAction(javax.faces.el.MethodBinding binding) |
void |
setActionExpression(javax.el.MethodExpression actionExpression)
Sets a reference to an action method sent by the commandButton, or the static outcome of an action
|
void |
setActionListener(javax.faces.el.MethodBinding actionListener)
Sets a method reference to an action listener
|
void |
setReturnListener(javax.faces.el.MethodBinding binding)
Deprecated.
|
void |
setReturnListener(javax.el.MethodExpression returnListener)
Sets a method reference to an return listener
|
addValidator, addValueChangeListener, compareValues, getConvertedValue, getRequiredMessageDetail, getRequiredMessageKey, getSubmittedValue, getValidator, getValidators, getValueChangeListener, getValueChangeListeners, isEmpty, isImmediate, isLocalValueSet, isRequired, isValid, processDecodes, processUpdates, processValidators, removeValidator, removeValueChangeListener, resetValue, setImmediate, setLocalValueSet, setRequired, setRequiredMessageDetail, setSubmittedValue, setValid, setValidator, setValueChangeListener, updateModel, validate, validateValue
getConverter, getLocalValue, getValue, setConverter, setValue
adaptMethodBinding, addAttributeChange, addAttributeChangeListener, addFacesListener, broadcastToMethodBinding, broadcastToMethodExpression, createFacesBean, decode, decodeChildren, decodeChildrenImpl, encodeBegin, encodeChildren, encodeEnd, findComponent, getAttributeChangeListener, getAttributeChangeListeners, getAttributes, getBooleanProperty, getChildCount, getChildren, getClientId, getContainerClientId, getFacesBean, getFacesContext, getFacesListeners, getFacet, getFacetCount, getFacetNames, getFacets, getFacetsAndChildren, getId, getIntProperty, getLifecycleRenderer, getParent, getProperty, getPropertyKey, getRenderer, getRendererType, getRendersChildren, getValueBinding, getValueExpression, invokeOnChildrenComponents, invokeOnComponent, invokeOnNamingContainerComponent, isRendered, isTransient, markInitialState, processRestoreState, processSaveState, removeAttributeChangeListener, removeFacesListener, restoreState, satisfiesPartialTrigger, saveState, setAttributeChangeListener, setAttributeChangeListener, setBooleanProperty, setId, setIntProperty, setParent, setProperty, setRendered, setRendererType, setTransient, setValueBinding, setValueExpression, toString, updateChildren, updateChildrenImpl, validateChildren, validateChildrenImpl
addPartialTarget, clearCachedClientIds, clearCachedClientIds, encodeFlattenedChild, encodeFlattenedChildren, getLogicalParent, getLogicalParent, isVisitable, partialEncodeVisit, processFlattenedChildren, processFlattenedChildren, processFlattenedChildren, processFlattenedChildren, setPartialTarget, setupChildrenVisitingContext, setupEncodingContext, setUpEncodingContext, setupVisitingContext, tearDownChildrenVisitingContext, tearDownEncodingContext, tearDownVisitingContext, visitChildren, visitTree, visitTree
public static final FacesBean.Type TYPE
public static final PropertyKey ACTION_EXPRESSION_KEY
public static final PropertyKey ACTION_LISTENER_KEY
public static final PropertyKey RETURN_LISTENER_KEY
public static final String COMPONENT_FAMILY
public static final String COMPONENT_TYPE
public UIXSelectInput()
protected UIXSelectInput(String rendererType)
@Deprecated public void setReturnListener(javax.faces.el.MethodBinding binding)
public javax.faces.el.MethodBinding getAction()
getAction
in interface javax.faces.component.ActionSource
public void setAction(javax.faces.el.MethodBinding binding)
setAction
in interface javax.faces.component.ActionSource
public void queueEvent(javax.faces.event.FacesEvent e)
Intercept queueEvent
and mark the phaseId for any
ActionEvents to be PhaseId.APPLY_REQUEST_VALUES
.
queueEvent
in class UIXComponentBase
public void broadcast(javax.faces.event.FacesEvent event) throws javax.faces.event.AbortProcessingException
UIComponent.broadcast(javax.faces.event.FacesEvent)
processing, pass the ValueChangeEvent
being broadcast to the
method referenced by valueChangeListener
(if any).broadcast
in class UIXEditableValue
event
- FacesEvent
to be broadcastjavax.faces.event.AbortProcessingException
- Signal the JavaServer Faces
implementation that no further processing on the current event
should be performedpublic final javax.el.MethodExpression getActionExpression()
getActionExpression
in interface javax.faces.component.ActionSource2
public final void setActionExpression(javax.el.MethodExpression actionExpression)
setActionExpression
in interface javax.faces.component.ActionSource2
actionExpression
- the new actionExpression valuepublic final javax.faces.el.MethodBinding getActionListener()
getActionListener
in interface javax.faces.component.ActionSource
public final void setActionListener(javax.faces.el.MethodBinding actionListener)
setActionListener
in interface javax.faces.component.ActionSource
actionListener
- the new actionListener valuepublic final javax.el.MethodExpression getReturnListener()
public final void setReturnListener(javax.el.MethodExpression returnListener)
returnListener
- the new returnListener valuepublic final void addActionListener(javax.faces.event.ActionListener listener)
addActionListener
in interface javax.faces.component.ActionSource
listener
- the action listener to addpublic final void removeActionListener(javax.faces.event.ActionListener listener)
removeActionListener
in interface javax.faces.component.ActionSource
listener
- the action listener to removepublic final javax.faces.event.ActionListener[] getActionListeners()
getActionListeners
in interface javax.faces.component.ActionSource
public final void addReturnListener(ReturnListener listener)
listener
- the return listener to addpublic final void removeReturnListener(ReturnListener listener)
listener
- the return listener to removepublic final ReturnListener[] getReturnListeners()
public String getFamily()
getFamily
in class UIXEditableValue
protected FacesBean.Type getBeanType()
getBeanType
in class UIXEditableValue
Copyright © 2001-2016 The Apache Software Foundation. All Rights Reserved.