Skip navigation links
oracle.adf.view.rich.event
Class ReturnPopupEvent
java.lang.Object
java.util.EventObject
javax.faces.event.FacesEvent
oracle.adf.view.rich.event.ReturnPopupEvent
- All Implemented Interfaces:
- Serializable
-
public class ReturnPopupEvent
- extends javax.faces.event.FacesEvent
ReturnPopupEvent is delivered after a user closes the popup dialog along with any data that may be required to update fields on the base page. For example, after user clicks the "OK" button on the "Search and Select dialog" to return to the inputListOfValues component any return data provided by ReturnPopupDataListener can be passed to the ReturnPopupEvent. This provides the developer a chance to process the returned data and update the LOV field (and other fields if necessary).
- See Also:
- Serialized Form
| Constructor Summary |
ReturnPopupEvent(javax.faces.component.UIComponent source, Object returnValue)
Constuctor for ReturnPopupEvent. |
ReturnPopupEvent(javax.faces.component.UIComponent source, Object returnValue, Map returnParams)
Constructor for ReturnPopupEvent |
| Methods inherited from class javax.faces.event.FacesEvent |
getComponent, getPhaseId, queue, setPhaseId |
ReturnPopupEvent
public ReturnPopupEvent(javax.faces.component.UIComponent source,
Object returnValue)
- Constuctor for ReturnPopupEvent.
- Parameters:
source - UIComponent the component instance.
returnValue - the returnValue can either be - a List< Object> of size 1, where Object belongs to list returned by the call to getItems() (or getRecentItems()) or,
- a RowKeySet, containing the rowKeys of the selected rows belonging to the getTableModel().getCollectionModel().
- or Object, which happens to be the single matched row, returned by call
ReturnPopupEvent
public ReturnPopupEvent(javax.faces.component.UIComponent source,
Object returnValue,
Map returnParams)
- Constructor for ReturnPopupEvent
- Parameters:
source - UIComponent the component instance
returnValue - the returnValue can either be - a List< Object> of size 1, where Object belongs to list returned by the call to getItems() (or getRecentItems()) or,
- a RowKeySet, containing the rowKeys of the selected rows belonging to the getTableModel().getCollectionModel().
- or Object, which happens to be the single matched row, returned by call
returnParams - Map additonal param returned for returnPopupEvent.
getReturnValue
public Object getReturnValue()
- Return the value Object from this event.
-
- Returns:
- the return value from this event.
getReturnParameters
public Map getReturnParameters()
-
- Returns:
- return Parameters for this event.
processListener
public void processListener(javax.faces.event.FacesListener listener)
-
- Specified by:
processListener in class javax.faces.event.FacesEvent
isAppropriateListener
public boolean isAppropriateListener(javax.faces.event.FacesListener listener)
-
- Specified by:
isAppropriateListener in class javax.faces.event.FacesEvent
hashCode
public int hashCode()
-
- Overrides:
hashCode in class Object
equals
public boolean equals(Object o)
-
- Overrides:
equals in class Object
toString
public String toString()
-
- Overrides:
toString in class EventObject
Skip navigation links
Copyright © 2013 Oracle Corporation. All Rights Reserved.