Package info.monitorenter.gui.chart
Interface IErrorBarPixel
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
ErrorBarPixel
Interface for an error bar in the pixel domain (vs. value domain) for a single
TracePoint2D
.
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
FieldsModifier and TypeFieldDescriptionstatic final int
Constant that identifies a resulting error to be non-existant. -
Method Summary
Modifier and TypeMethodDescriptionint
Returns the negative error (positive value) in X dimension as a pixel value orERROR_PIXEL_NONE
.int
Returns the negative error (positive value) in Y dimension as a pixel value orERROR_PIXEL_NONE
.int
Returns the positive error in X dimension as a pixel value orERROR_PIXEL_NONE
.int
Returns the positive error in Y dimension as a pixel value orERROR_PIXEL_NONE
.getTrace()
Returns the corresponding trace for this error bar.
-
Field Details
-
ERROR_PIXEL_NONE
static final int ERROR_PIXEL_NONEConstant that identifies a resulting error to be non-existant.- See Also:
-
-
Method Details
-
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.
-