S4 のドキュメントに roxygen2 を使用していますが、何らかの理由で使用セクションが表示されません。混乱を示すために簡単な例を作成しました。
#' Title
#'
#' @param x Temp
#'
#' @return Nothing of interest.
#'
#' @export
#' @docType methods
#' @rdname A-methods
setGeneric("A", function(x, ...){
cat("test\n")
standardGeneric("A")
})
#' @rdname A-methods
#' @aliases A,ANY,ANY-method
setMethod("A", "ANY", function(x, ...){
cat(class(x))
})
#END#