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 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 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 or ERROR_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 or ERROR_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 or ERROR_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.