如何访问未导出的 S4 方法

How to access S4 methods that are not exported

有没有办法访问未导出的 S4 方法?我正在开发一个使用 S3 classes 的包。我有一个名为 foo 的 class。对于 foo 我定义了一个新的绘图方法:

plot.foo <- function(x, ...) {
   # some code
   plot(x)  # this should be the plot method of an other S4 package
}

在我的特殊情况下,我想调用 raster 包中的 plot 方法,该方法似乎未被导出。

已在 raster 的开发版本中导出(可在此处获取:http://r-forge.r-project.org/R/?group_id=294),应该会在 CRAN 的下一个版本中提供。