Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1)

E12063-04

oracle.dss.dataView
Interface DataListener

All Superinterfaces:
java.util.EventListener
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

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

void viewPivotRequested(PivotEvent e)
Signal that a pivot happened.

Parameters:
e - information about the pivot

viewDrillRequesting

void viewDrillRequesting(DrillEvent e)
Signal that a drill is about to happen.

Parameters:
e - information about the drill

viewDrillRequested

void viewDrillRequested(DrillEvent e)
Signal that a drill just happened.

Parameters:
e - information about the drill

viewPageRequesting

void viewPageRequesting(PageEvent e)
Signal that a page change is about to happen.

Parameters:
e - information about the page change

viewPageRequested

void viewPageRequested(PageEvent e)
Signal that a page change just happened.

Parameters:
e - information about the page change

Oracle Fusion Middleware Java API Reference for Oracle Data Visualization Components
11g Release 1 (11.1.1)

E12063-04

Copyright © 1997, 2010, Oracle. All rights reserved.