|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.steema.teechart.events.SeriesMouseAdapter
public abstract class SeriesMouseAdapter
An abstract adapter class for receiving series events. The methods in this class are empty. This class exists as convenience for creating listener objects.
Series events let you track when a series is clicked.
Extend this class to create a SeriesMouseEvent
listener
and override the methods for the events of interest. (If you implement the
SeriesMouseListener
interface, you have to define all of
the methods in it. This abstract class defines null methods for them
all, so you can only have to define methods for events you care about.)
Create a listener object using the extended class and then register it with
a component using the component's addSeriesMouseListener
method. When a series is clicked (pressed and released), the relevant
method in the listener object is invoked and the SeriesMouseEvent
is
passed to it.
SeriesMouseEvent
,
SeriesMouseListenerer
Constructor Summary | |
---|---|
SeriesMouseAdapter()
|
Method Summary | |
---|---|
void |
seriesClicked(SeriesMouseEvent e)
Invoked when a Series is clicked. |
void |
seriesEntered(SeriesMouseEvent e)
Invoked when the mouse pointer enters the Series. |
void |
seriesExited(SeriesMouseEvent e)
Invoked when the mouse pointer leaves the Series. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.w3c.dom.events.EventListener |
---|
handleEvent |
Constructor Detail |
---|
public SeriesMouseAdapter()
Method Detail |
---|
public void seriesClicked(SeriesMouseEvent e)
seriesClicked
in interface SeriesMouseListener
public void seriesEntered(SeriesMouseEvent e)
seriesEntered
in interface SeriesMouseListener
public void seriesExited(SeriesMouseEvent e)
seriesExited
in interface SeriesMouseListener
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |