Displaying 1 result from an estimated 1 matches for "qualopt".
Did you mean:
  qualit
  
2011 Mar 11
1
WARNING Undocumented S4 methods 'initialize' - why?
...nitialize' and R CMD check has never 
complained. Thus, do you have any idea why I get suddenly this warning 
for method 'initialize'?
Here is the code for 'QualTreeSet':
setClass("QualTreeSet",
    representation(qualtype = "character",
                   qualopt  = "character"
    ),
    contains=c("ProcesSet"),
    prototype(qualtype = "rlm",
              qualopt  = "raw"
    )
)#QualTreeSet
setMethod("initialize", "QualTreeSet",
    function(.Object,
             qualtype = "rlm",...