Package info.monitorenter.gui.chart
Interface ITracePointProvider
-
- All Known Implementing Classes:
TracePointProviderDefault
public interface ITracePointProvider
Interface for creation of new instances of
which will be used wherever a chart component tree has to create them.ITracePoint2D
- Version:
- $Revision: 1.3 $
- Author:
- Achim Westermann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ITracePoint2D
createTracePoint(double x, double y)
Callback for creating trace points.
-
-
-
Method Detail
-
createTracePoint
ITracePoint2D createTracePoint(double x, double y)
Callback for creating trace points.- Parameters:
x
- the x value for the new instance.y
- the y value for the new instance.- Returns:
- the desired trace point implementation to use.
-
-