1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
\name{show}
\alias{show,jobjRef-method}
\alias{str,jobjRef-method}
\alias{show,jarrayRef-method}
\alias{show,jclassName-method}
\title{Show a Java Object Reference}
\description{
Display a Java object reference in a descriptive, textual form. The
default implementation calls \code{toString} Java method to obtain
object's printable value and uses calls \code{show} on the resulting
string garnished with additional details.
}
\section{Methods}{
\describe{
\item{show}{\code{signature(object = "jobjRef")}: ... }
\item{show}{\code{signature(object = "jarrayRef")}: ... }
\item{show}{\code{signature(object = "jclassName")}: ... }
\item{str}{\code{signature(object = "jobjRef")}: currently identical to show }
}
}
\keyword{interface}
|