Package info.monitorenter.gui.chart
Interface IErrorBarPixel
-
- All Superinterfaces:
java.io.Serializable
- All Known Implementing Classes:
ErrorBarPixel
public interface IErrorBarPixel extends java.io.Serializable
Interface for an error bar in the pixel domain (vs. value domain) for a singleTracePoint2D
.Errors returned from the getters represent only the error part and not the absolute value. Errors are always absolute values (vs. relative to the original value to add the error to.
- Version:
- $Revision: 1.10 $
- Author:
- Achim Westermann
-
-
Field Summary
Fields Modifier and Type Field Description static int
ERROR_PIXEL_NONE
Constant that identifies a resulting error to be non-existant.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getNegativeXErrorPixel()
Returns the negative error (positive value) in X dimension as a pixel value orERROR_PIXEL_NONE
.int
getNegativeYErrorPixel()
Returns the negative error (positive value) in Y dimension as a pixel value orERROR_PIXEL_NONE
.int
getPositiveXErrorPixel()
Returns the positive error in X dimension as a pixel value orERROR_PIXEL_NONE
.int
getPositiveYErrorPixel()
Returns the positive error in Y dimension as a pixel value orERROR_PIXEL_NONE
.ITrace2D
getTrace()
Returns the corresponding trace for this error bar.
-
-
-
Field Detail
-
ERROR_PIXEL_NONE
static final int ERROR_PIXEL_NONE
Constant that identifies a resulting error to be non-existant.- See Also:
- Constant Field Values
-
-
Method Detail
-
getNegativeXErrorPixel
int getNegativeXErrorPixel()
Returns the negative error (positive value) in X dimension as a pixel value orERROR_PIXEL_NONE
.- Returns:
- the negative error in X dimension or
ERROR_PIXEL_NONE
.
-
getNegativeYErrorPixel
int getNegativeYErrorPixel()
Returns the negative error (positive value) in Y dimension as a pixel value orERROR_PIXEL_NONE
.- Returns:
- the negative error in Y dimension or
ERROR_PIXEL_NONE
.
-
getPositiveXErrorPixel
int getPositiveXErrorPixel()
Returns the positive error in X dimension as a pixel value orERROR_PIXEL_NONE
.- Returns:
- the positive error in X dimension or
ERROR_PIXEL_NONE
.
-
getPositiveYErrorPixel
int getPositiveYErrorPixel()
Returns the positive error in Y dimension as a pixel value orERROR_PIXEL_NONE
.- Returns:
- the positive error in Y dimension or
ERROR_PIXEL_NONE
.
-
getTrace
ITrace2D getTrace()
Returns the corresponding trace for this error bar.- Returns:
- the corresponding trace for this error bar.
-
-