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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Do not modify this file since it was automatically generated from:
%
% RspCode.R
%
% by the Rdoc compiler part of the R.oo package.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\name{RspCode}
\docType{class}
\alias{RspCode}
\title{The RspCode class}
\description{
Package: R.rsp \cr
\bold{Class RspCode}\cr
\code{character}\cr
\code{~~|}\cr
\code{~~+--}\code{\link[R.rsp]{RspObject}}\cr
\code{~~~~~~~|}\cr
\code{~~~~~~~+--}\code{\link[R.rsp]{RspConstruct}}\cr
\code{~~~~~~~~~~~~|}\cr
\code{~~~~~~~~~~~~+--}\code{\link[R.rsp]{RspExpression}}\cr
\code{~~~~~~~~~~~~~~~~~|}\cr
\code{~~~~~~~~~~~~~~~~~+--}\code{RspCode}\cr
\bold{Directly known subclasses:}\cr
\link[R.rsp]{RspCodeChunk}\cr
public class \bold{RspCode}\cr
extends \link[R.rsp]{RspExpression}\cr
An RspCode is an \code{\link{RspExpression}} that represents a piece of source
code, which may or may not be a complete code chunk (expression).
}
\usage{
RspCode(code=character(), echo=FALSE, ...)
}
\arguments{
\item{code}{A \code{\link[base]{character}} string.}
\item{echo}{If \code{\link[base:logical]{TRUE}}, code is echoed to the output.}
\item{...}{Not used.}
}
\section{Fields and Methods}{
\bold{Methods:}\cr
\tabular{rll}{
\tab \code{asRspString} \tab -\cr
\tab \code{\link[R.rsp:getCode.RspCode]{getCode}} \tab Gets the source code.\cr
\tab \code{\link[R.rsp:getEcho.RspCode]{getEcho}} \tab Checks whether the source code should be echoed or not.\cr
}
\bold{Methods inherited from RspConstruct}:\cr
asRspString, getComment, getInclude, getSuffixSpecs
\bold{Methods inherited from RspObject}:\cr
print
\bold{Methods inherited from character}:\cr
Ops,nonStructure,vector-method, Ops,structure,vector-method, Ops,vector,nonStructure-method, Ops,vector,structure-method, all.equal, as.Date, as.POSIXlt, as.data.frame, as.raster, coerce,ANY,character-method, coerce,character,SuperClassMethod-method, coerce,character,signature-method, coerce<-,ObjectsWithPackage,character-method, coerce<-,signature,character-method, formula, getDLLRegisteredRoutines, glyphJust, isOpen, toLatex, uses
}
\author{Henrik Bengtsson}
\keyword{classes}
\keyword{internal}
|