describe {rsbml} | R Documentation |
Each class in the SBML DOM extends the Describable
class and thus has a describe
method, which
describes an object with a short string. This is used by the
show
method to output terse textual representations of the DOM.
describe(object, ...)
object |
The object to be described. |
... |
Additional arguments for methods. |
A short textual (string) representation of object
.
An object that extends
Describable
has a method for the describe
generic, and by default Describable
objects are show
n by
printing the output of describe
. Note that Describable
is a virtual tag class, no objects may be
created from it.
signature(object = "Describable")
: outputs the
return value of describe
. Michael Lawrence