The R Project SVN R

Rev

Rev 59039 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/methods/man/ObjectsWithPackage-class.Rd
68948 ripley 2
% Part of the R package, https://www.R-project.org
59039 ripley 3
% Copyright 1995-2007 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
20092 jmc 6
\name{ObjectsWithPackage-class}
7
\docType{class}
56186 murdoch 8
\alias{ObjectsWithPackage-class}
20092 jmc 9
\title{A Vector of Object Names, with associated Package Names }
23531 hornik 10
\description{
11
  This class of objects is used to represent ordinary character string
12
  object names, extended with a \code{package} slot naming the package
13
  associated with each object.
14
}
20092 jmc 15
\section{Objects from the Class}{
23531 hornik 16
  The function \code{\link{getGenerics}} returns an object of this class.
20092 jmc 17
}
18
\section{Slots}{
19
  \describe{
20
    \item{\code{.Data}:}{Object of class \code{"character"}: the
23531 hornik 21
      object names.}
20092 jmc 22
    \item{\code{package}:}{Object of class \code{"character"} the
23531 hornik 23
      package names.}
20092 jmc 24
  }
25
}
26
\section{Extends}{
23531 hornik 27
  Class \code{"character"}, from data part.\cr
28
  Class \code{"vector"}, by class \code{"character"}.
20092 jmc 29
}
30
\seealso{ \code{Methods} for general background. }
31
\keyword{classes}