oldGet                package:methods                R Documentation

_O_l_d _f_u_n_c_t_i_o_n_s _t_o _a_c_c_e_s_s _s_l_o_t_s _i_n _a _c_l_a_s_s _d_e_f_i_n_i_t_i_o_n

_D_e_s_c_r_i_p_t_i_o_n:

     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.

_U_s_a_g_e:

     getAccess(ClassDef) 

     getClassName(ClassDef) 

     getClassPackage(ClassDef) 

     getExtends(ClassDef) 

     getProperties(ClassDef) 

     getPrototype(ClassDef) 

     getSubclasses(ClassDef) 

     getValidity(ClassDef) 

     getVirtual(ClassDef) 

_A_r_g_u_m_e_n_t_s:

ClassDef: the class definition object 

_D_e_t_a_i_l_s:

     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"'

_S_e_e _A_l_s_o:

     'classRepresentation-class'

