oracle.forms.demos.bigraph
Class mViewMouseListener

java.lang.Object
  |
  +--oracle.forms.demos.bigraph.mViewMouseListener
All Implemented Interfaces:
java.util.EventListener, oracle.dss.dataView.ViewMouseListener

public class mViewMouseListener
extends java.lang.Object
implements oracle.dss.dataView.ViewMouseListener

mViewMouseListener implements ViewMouseListener, handling mouse events in the BI Graph


Constructor Summary
mViewMouseListener(oracle.dss.graph.Graph g, FormsGraph fg, localRelationalData lrd)
           
 
Method Summary
 void mouseClicked(oracle.dss.dataView.ViewMouseEvent p0)
          If mouse interaction is enabled in Forms then the following values are returned in a single delimited string.
 void mouseEntered(oracle.dss.dataView.ViewMouseEvent p0)
           
 void mouseExited(oracle.dss.dataView.ViewMouseEvent p0)
           
 void mousePressed(oracle.dss.dataView.ViewMouseEvent p0)
           
 void mouseReleased(oracle.dss.dataView.ViewMouseEvent p0)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

mViewMouseListener

public mViewMouseListener(oracle.dss.graph.Graph g,
                          FormsGraph fg,
                          localRelationalData lrd)
Method Detail

mouseClicked

public void mouseClicked(oracle.dss.dataView.ViewMouseEvent p0)
If mouse interaction is enabled in Forms then the following values are returned in a single delimited string.

Label of the row: for the Emp table this would be e.g. the employees name ("Smith")

Label of the column: for the Emp table this would be e.g. Sal

Value of the graph: the value is returned in 00.00 format

Column number of the bar in the graph: showing e.g. "Sal" and "Commission" will return 1 for "Sal" and 2 for "Commission"

Row number of the bar in the graph: Showing e.g. Salary for "Smith", "Jones" and "King" will return 1 for "Smtith", 2 for "Jones" and 3 form "King"

The string values are separated by the actual delimiter used, the default delimiter is ",".

Specified by:
mouseClicked in interface oracle.dss.dataView.ViewMouseListener

mousePressed

public void mousePressed(oracle.dss.dataView.ViewMouseEvent p0)
Specified by:
mousePressed in interface oracle.dss.dataView.ViewMouseListener

mouseReleased

public void mouseReleased(oracle.dss.dataView.ViewMouseEvent p0)
Specified by:
mouseReleased in interface oracle.dss.dataView.ViewMouseListener

mouseEntered

public void mouseEntered(oracle.dss.dataView.ViewMouseEvent p0)
Specified by:
mouseEntered in interface oracle.dss.dataView.ViewMouseListener

mouseExited

public void mouseExited(oracle.dss.dataView.ViewMouseEvent p0)
Specified by:
mouseExited in interface oracle.dss.dataView.ViewMouseListener