The R Project SVN R

Rev

Rev 71366 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 71366 Rev 80007
Line 95... Line 95...
95
  \dots (optionally).  For example, the method for class
95
  \dots (optionally).  For example, the method for class
96
  \code{"traceable"} documented above would be created by a call to
96
  \code{"traceable"} documented above would be created by a call to
97
  \code{\link{setMethod}} of the form:
97
  \code{\link{setMethod}} of the form:
98
 
98
 
99
\preformatted{    setMethod("initialize", "traceable",
99
\preformatted{    setMethod("initialize", "traceable",
100
      function(.Object, def, tracer, exit, at, print) \dots
100
      function(.Object, def, tracer, exit, at, print) { .... }
101
    )
101
    )
102
}
102
}
103
 
103
 
104
  In this example, no other arguments are meaningful, and the resulting
104
  In this example, no other arguments are meaningful, and the resulting
105
  method will throw an error if other names are supplied.
105
  method will throw an error if other names are supplied.