classRepresentation-class      package:methods      R Documentation

_C_l_a_s_s _O_b_j_e_c_t_s

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

     These are the objects that hold the definition of classes of
     objects.  They are constructed and stored as meta-data by calls to
     the function 'setClass'.  Don't manipulate them directly, except
     perhaps to look at individual slots.

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

     Class definitions are stored as metadata in various packages.
     Additional metadata supplies information on inheritance (the
     result of calls to 'setIs').  Inheritance information implied by
     the class definition itself (because the class contains one or
     more other classes) is also constructed automatically.

     When a class is to be used in an R session, this information is
     assembled to complete the class definition.  The completion is a
     second object of class '"classRepresentation"', cached for the
     session or until something happens to change the information.  A
     call to 'getClass' returns the completed definition of a class; a
     call to 'getClassDef' returns the stored definition (uncompleted).

     In particular, completion fills in the upward- and
     downward-pointing inheritance information for the class, in slots
     'contains' and 'subclasses' respectively.  It's in principle
     important to note that this information can depend on which
     packages are installed, since these may define additional
     subclasses or superclasses.

_S_l_o_t_s:

     '_s_l_o_t_s': A named list of the slots in this class; the elements of
          the list are the classes to which the slots must belong (or
          extend), and the names of the list gives the corresponding
          slot names.

     '_c_o_n_t_a_i_n_s': A named list of the classes this class "contains"; the
          elements of the list are objects of 'SClassExtension-class'.
          The list may be only the direct extensions or all the
          currently known extensions (see the details).

     '_v_i_r_t_u_a_l': Logical flag, set to 'TRUE' if this is a virtual class.

     '_p_r_o_t_o_t_y_p_e': The object that represents the standard prototype for
          this class; i.e., the data and slots returned by a call to
          'new' for this class with no special arguments.  Don't mess
          with the prototype object directly.

     '_v_a_l_i_d_i_t_y': Optionally, a function to be used to test the validity
          of objects from this class. See 'validObject'.

     '_a_c_c_e_s_s': Access control information.  Not currently used.

     '_c_l_a_s_s_N_a_m_e': The character string name of the class.

     '_p_a_c_k_a_g_e': The character string name of the package to which the
          class belongs.  Nearly always the package on which the
          metadata for the class is stored, but in operations such as
          constructing inheritance information, the internal package
          name rules. 

     '_s_u_b_c_l_a_s_s_e_s': A named list of the classes known to extend this
          class'; the elements of the list are objects of
          'SClassExtension-class'.  The list is currently only filled
          in when completing the class definition (see the details).

     '_v_e_r_s_i_o_n_K_e_y': Object of class '"externalptr"'; eventually will
          perhaps hold some versioning information, but not currently
          used. 

     '_s_e_a_l_e_d': Object of class '"logical"'; is this class sealed?  If
          so, no modifications are allowed. 

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

     See function 'setClass' to supply the information in the class
     definition. See Classes for a more basic discussion of class
     information.

