R/00_class_01_klausuR.test.R

# Copyright 2009-2014 Meik Michalke <meik.michalke@hhu.de>
#
# This file is part of the R package klausuR.
#
# klausuR is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# klausuR is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with klausuR.  If not, see <http://www.gnu.org/licenses/>.


#' Class klausuR.test
#'
#' This class is currently an empty placeholder. In future releases, it is planned to contain the actual test items in a list
#' like format.
#'
#' @slot items Empty dummy.
#' @name klausuR.test,-class
#' @aliases klausuR.test-class klausuR.test,-class
#' @import methods
#' @keywords classes
# @author m.eik michalke \email{meik.michalke@@uni-duesseldorf.de}
#' @export
#' @rdname klausuR.test-class

setClass("klausuR.test",
  representation=representation(
    items="list"
  ),
  prototype(
    items=list()
  )
)

# setValidity("klausuR.titems", function(object){
#   obj.test  <- object@test
# })

Try the klausuR package in your browser

Any scripts or data that you put into this service are public.

klausuR documentation built on April 5, 2022, 1:15 a.m.