Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


oracle.dss.gridView
Interface GridViewSelectionManager

All Superinterfaces:
Manager, SelectionManager

public interface GridViewSelectionManager
extends SelectionManager

This interface describes the API to which a class implementing data and object selection for view beans must adhere.


Method Summary
 boolean canEditCell(int row, int column)
          Can this cell be edited? If false, it won't be editable as selected.
 boolean canSelectCell(int row, int column)
          Can this cell be selected? If false, it won't be shown as selected.
 boolean canSelectColumn(int column)
          Can this column be selected? If false, it won't be shown as selected.
 boolean canSelectRow(int row)
          Can this row be selected? If false, it won't be shown as selected.

 

Methods inherited from interface oracle.dss.dataView.SelectionManager
canSelectComponent, canSelectComponents, componentSelected

 

Methods inherited from interface oracle.dss.dataView.Manager
dataSourceChanged

 

Method Detail

canSelectCell

public boolean canSelectCell(int row,
                             int column)
Can this cell be selected? If false, it won't be shown as selected.
Parameters:
row - the row of the cell to check
column - the column of the cell to check
Returns:
true if the cell can be selected

canSelectColumn

public boolean canSelectColumn(int column)
Can this column be selected? If false, it won't be shown as selected.
Parameters:
column - the column to check
Returns:
true if the column can be selected

canSelectRow

public boolean canSelectRow(int row)
Can this row be selected? If false, it won't be shown as selected.
Parameters:
row - the row to check
Returns:
true if the row can be selected

canEditCell

public boolean canEditCell(int row,
                           int column)
Can this cell be edited? If false, it won't be editable as selected. Note: cellEditingAllowed setting overrides this.
Parameters:
row - the row of the cell to check
column - the column of the cell to check
Returns:
true if the cell can be edited

Oracle™ Business Intelligence Beans Java API Reference
Release 10
g (9.0.4)
Part number B12159_01


Copyright © 2003, Oracle. All Rights Reserved.