Skip navigation links
oracle.adf.view.rich.event
Class ColumnSelectionEvent
java.lang.Object
java.util.EventObject
javax.faces.event.FacesEvent
oracle.adf.view.rich.event.ColumnSelectionEvent
- All Implemented Interfaces:
- Serializable
-
public class ColumnSelectionEvent
- extends javax.faces.event.FacesEvent
ColumnSelectionEvent is fired when a column selection change occurrs in RichTable and RichTreeTable. The 'addedColumns' and 'removedColumns' properties of the event contain column client IDs for the newly selected and newly unselected columns. The getSelectedColumns API (available on the 'source' component) returns client IDs for all currently selected columns.
- See Also:
- Serialized Form
| Methods inherited from class javax.faces.event.FacesEvent |
getComponent, getPhaseId, queue, setPhaseId |
ColumnSelectionEvent
public ColumnSelectionEvent(javax.faces.component.UIComponent source,
Collection<String> addedColumns,
Collection<String> removedColumns)
- Creates a ColumnSelectionEvent
- Parameters:
source - UIComponent firing the event
addedColumns - a Collection of column client IDs that have just been selected.
removedColumns - a Collection of client IDs that have just been unselected.
isAppropriateListener
public boolean isAppropriateListener(javax.faces.event.FacesListener listener)
-
- Specified by:
isAppropriateListener in class javax.faces.event.FacesEvent
processListener
public void processListener(javax.faces.event.FacesListener listener)
-
- Specified by:
processListener in class javax.faces.event.FacesEvent
getAddedColumns
public Collection<String> getAddedColumns()
- Returns newly selected columns
-
- Returns:
- Collection of client IDs for newly selected columns
getRemovedColumns
public Collection<String> getRemovedColumns()
- Returns newly unselected columns
-
- Returns:
- Collection of client IDs for newly unselected columns
Skip navigation links
Copyright © 2013 Oracle Corporation. All Rights Reserved.