R/PlotDataBoolean.r

#' PlotDataBoolean: For plotting a Bools.
#'
#' @export PlotDataBoolean
#' @exportClass PlotDataBoolean
PlotDataBoolean <- R6::R6Class(
    classname = "PlotDataBoolean",
    inherit = PlotData,

    ## Properties
    private = list(
    ),

    ## Methods
    public = list(
        initialize = function(name, xVals, yVals) {
            super$initialize(name, xVals, yVals)
        },
        plot = function() {
            stop("TODO")
        }
    ),

    ## Accessable properties. Active bindings look like fields, but each time they are accessed,
    ## they call a function. They are always publicly visible.
    active = list(
    )
)
schnecki/ranalyse documentation built on Dec. 1, 2022, 8:57 p.m.