Displaying 1 result from an estimated 1 matches for "derived_n".
Did you mean:
derived_m
2012 Aug 06
1
OO code organization
...d does
setMethod("showSelf",
signature(this="derived_j"),
definition=
function(this){ ... }
)
Finally in tests/tests.R we do
source("../base/base.R")
source("../derived_1/derived_1.R")
source("../derived_2/derived_2.R")
....
source("../derived_n/derived_n.R")
now we check which methods "showSelf" are known at this point:
showMethods("showSelf")
and get
>showMethods("showSelf")
Function: showSelf (package .GlobalEnv)
this="base"
this="derived_n"
The methods with signatur...