Package info.monitorenter.gui.chart
Class TracePointProviderDefault
- java.lang.Object
-
- info.monitorenter.gui.chart.TracePointProviderDefault
-
- All Implemented Interfaces:
ITracePointProvider
public class TracePointProviderDefault extends java.lang.Object implements ITracePointProvider
Default creator of
instances that returns implementationITracePoint2D
.TracePoint2D
- Version:
- $Revision: 1.4 $
- Author:
- Achim Westermann
-
-
Constructor Summary
Constructors Constructor Description TracePointProviderDefault()
Defcon.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ITracePoint2D
createTracePoint(double x, double y)
Callback for creating trace points.
-
-
-
Method Detail
-
createTracePoint
public ITracePoint2D createTracePoint(double x, double y)
Description copied from interface:ITracePointProvider
Callback for creating trace points.- Specified by:
createTracePoint
in interfaceITracePointProvider
- 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.
- See Also:
ITracePointProvider.createTracePoint(double, double)
-
-