1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
\name{VersionsNull}
\docType{class}
\alias{VersionsNull-class}
\alias{VersionsNull}
\alias{initialize,VersionsNull-method}
\alias{show,VersionsNull-method}
\title{Class "VersionsNull"}
\description{
A class used to represent the `version' of unversioned
objects. Useful primarily for method dispatch.
}
\section{Methods}{
The following are defined; package developers may write additional methods.
\describe{
\item{\code{new("VersionsNull", ...)}}{Create a new
\code{VersionsNull-class} instance, ignoring any additional arguments.}
\item{\code{show(object)}}{Display ``No version''.}
}
}
\author{Biocore}
\seealso{
\code{\link{classVersion}}
}
\examples{
obj <- new("VersionsNull")
obj
obj <- new("VersionsNull", A="1.0.0") # warning
obj
}
\keyword{classes}
|