oldGet {methods} | R Documentation |
Expect these functions to become deprecated in the near future.
They do nothing but access a slot in a class definition, and don't
even do this consistently with the right name (they date back to the
early implementation of the methods package).
Higher-level functions for the useful operations (e.g.,
extends
for getExtends
) should be used instead.
getAccess(ClassDef) getClassName(ClassDef) getClassPackage(ClassDef) getExtends(ClassDef) getProperties(ClassDef) getPrototype(ClassDef) getSubclasses(ClassDef) getValidity(ClassDef) getVirtual(ClassDef)
ClassDef |
the class definition object |
The functions should be replaced by direct access to the slots, or by use of higher-level alternatives.
The functions and corresponding slots are:
getAccess | "access" |
getClassName | "className" |
getClassPackage | "package" |
getExtends | "contains" |
getProperties | "slots" |
getPrototype | "prototype" |
getSubclasses | "subclasses" |
getValidity | "validity" |
getVirtual | "virtual" |