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


oracle.dss.dataView
Interface DataListener

All Superinterfaces:
java.util.EventListener
All Known Subinterfaces:
GridViewDataListener, TableDataListener
All Known Implementing Classes:
DataListenerAdapter

public interface DataListener
extends java.util.EventListener

This interface describes the methods a bean user should implement to hook OLAP data events.


Method Summary
 void viewDrillRequested(DrillEvent e)
          Signal that a drill just happened.
 void viewDrillRequesting(DrillEvent e)
          Signal that a drill is about to happen.
 void viewPageRequested(PageEvent e)
          Signal that a page change just happened.
 void viewPageRequesting(PageEvent e)
          Signal that a page change is about to happen.
 void viewPivotRequested(PivotEvent e)
          Signal that a pivot happened.
 void viewPivotRequesting(PivotEvent e)
          Signal that a pivot is about to happen.

 

Method Detail

viewPivotRequesting

public void viewPivotRequesting(PivotEvent e)
Signal that a pivot is about to happen. Note: we can distinguish edge pivots as a sub-kind of DataviewEvent when pivoting/pivoted are called.
Parameters:
e - information about the pivot

viewPivotRequested

public void viewPivotRequested(PivotEvent e)
Signal that a pivot happened.
Parameters:
e - information about the pivot

viewDrillRequesting

public void viewDrillRequesting(DrillEvent e)
Signal that a drill is about to happen.
Parameters:
e - information about the drill

viewDrillRequested

public void viewDrillRequested(DrillEvent e)
Signal that a drill just happened.
Parameters:
e - information about the drill

viewPageRequesting

public void viewPageRequesting(PageEvent e)
Signal that a page change is about to happen.
Parameters:
e - information about the page change

viewPageRequested

public void viewPageRequested(PageEvent e)
Signal that a page change just happened.
Parameters:
e - information about the page change

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


Copyright © 2003, Oracle. All Rights Reserved.