R/R6UMLR2Base.R

#' @name UMLR2Base
#' @title UMLR2Base
#' @rdname R6UMLR2BASE
#' @docType class
#' @description  Clase base del paquete.
#'               Contiene los mensajes de error.
#' @import R6
library(R6)
UMLR2Base = R6Class("R6UMLR2BASE"
   ,public = list(
       #' @description Inicializador
       initialize = function() {
          if (substr(as.character(sys.call(-1))[1], 1, 9) == "UMLR2Base") private$plantErr("E900")
       }
    )
  ,private = list(
      msg = UMLR2Msg.getInstance()
   )
)
Grandez/plantumlr documentation built on Aug. 18, 2020, 6:53 p.m.