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.

IChartMouseListener类的抽象实现.

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)
          chart对象的鼠标点击事件.
 void chartMouseEntered(ChartMouseEvent event)
          chart对象的鼠标进入事件.
 void chartMouseExited(ChartMouseEvent event)
          chart对象的鼠标退出事件.
 void chartMouseMoved(ChartMouseEvent event)
          chart对象的鼠标移动事件.
 void chartMousePressed(ChartMouseEvent event)
          chart对象的鼠标按下事件.
 void chartMouseReleased(ChartMouseEvent event)
          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)
chart对象的鼠标点击事件.

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

chartMouseMoved

public void chartMouseMoved(ChartMouseEvent event)
chart对象的鼠标移动事件.

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

chartMousePressed

public void chartMousePressed(ChartMouseEvent event)
chart对象的鼠标按下事件.

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

chartMouseReleased

public void chartMouseReleased(ChartMouseEvent event)
chart对象的鼠标释放事件.

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

chartMouseEntered

public void chartMouseEntered(ChartMouseEvent event)
chart对象的鼠标进入事件.

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

chartMouseExited

public void chartMouseExited(ChartMouseEvent event)
chart对象的鼠标退出事件.

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