R/DEMICel-methods.R

#==============================================================================#
# DEMICel-methods.R:
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# initialize.DEMICel
#==============================================================================#

#' Initializes a \code{DEMICel} object
#' 
#' Initializes a \code{DEMICel} object.
#' 
#' @param .Object A DEMICel object.
#' @param ... Additional arguments that may never be used.
#' @return Returns a \code{DEMICel} object
#' @author Sten Ilmjarv
#' @import methods
"initialize.DEMICel" <-
function( .Object, ... ) 
{
	.Object <- callNextMethod( .Object, ... );
	.Object;
}#initialize.DEMICel

#' @import methods
setMethod( "initialize", "DEMICel", initialize.DEMICel );

Try the demi package in your browser

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

demi documentation built on May 2, 2019, 11:11 a.m.