com.ijchart.xychart.listener
Class AbstractChartMouseAdapter

java.lang.Object
  extended by com.ijchart.xychart.listener.AbstractChartMouseAdapter
All Implemented Interfaces:
IChartMouseListener, java.util.EventListener

public abstract class AbstractChartMouseAdapter
extends java.lang.Object
implements IChartMouseListener

Title: IJChart

Description: a chart library for the Java(tm) platform.

An abstract adapter class for receiving chart mouse events.

Copyright: Copyright (c) 2013

Company:

Version:
1.0
Author:
zhang feng min,shanghai china. Contract me by email.

Constructor Summary
AbstractChartMouseAdapter()
           
 
Method Summary
 void chartMouseClicked(ChartMouseEvent event)
           Callback method for receiving notification of a mouse click on a chart.
 void chartMouseEntered(ChartMouseEvent event)
           Callback method for receiving notification of a mouse entered on a chart.
 void chartMouseExited(ChartMouseEvent event)
           Callback method for receiving notification of a mouse exited on a chart.
 void chartMouseMoved(ChartMouseEvent event)
           Callback method for receiving notification of a mouse movement on a chart.
 void chartMousePressed(ChartMouseEvent event)
           Callback method for receiving notification of a mouse pressed on a chart.
 void chartMouseReleased(ChartMouseEvent event)
           Callback method for receiving notification of a mouse released on a chart.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AbstractChartMouseAdapter

public AbstractChartMouseAdapter()
Method Detail

chartMouseClicked

public void chartMouseClicked(ChartMouseEvent event)
Callback method for receiving notification of a mouse click on a chart.

Specified by:
chartMouseClicked in interface IChartMouseListener
Parameters:
event - ChartMouseEvent The event.

chartMouseMoved

public void chartMouseMoved(ChartMouseEvent event)
Callback method for receiving notification of a mouse movement on a chart.

Specified by:
chartMouseMoved in interface IChartMouseListener
Parameters:
event - ChartMouseEvent The event.

chartMousePressed

public void chartMousePressed(ChartMouseEvent event)
Callback method for receiving notification of a mouse pressed on a chart.

Specified by:
chartMousePressed in interface IChartMouseListener
Parameters:
event - ChartMouseEvent The event.

chartMouseReleased

public void chartMouseReleased(ChartMouseEvent event)
Callback method for receiving notification of a mouse released on a chart.

Specified by:
chartMouseReleased in interface IChartMouseListener
Parameters:
event - ChartMouseEvent The event.

chartMouseEntered

public void chartMouseEntered(ChartMouseEvent event)
Callback method for receiving notification of a mouse entered on a chart.

Specified by:
chartMouseEntered in interface IChartMouseListener
Parameters:
event - ChartMouseEvent The event.

chartMouseExited

public void chartMouseExited(ChartMouseEvent event)
Callback method for receiving notification of a mouse exited on a chart.

Specified by:
chartMouseExited in interface IChartMouseListener
Parameters:
event - ChartMouseEvent The event.