MVC-class              package:MVCClass              R Documentation

_C_l_a_s_s "_M_V_C": _A _v_i_r_t_u_a_l _c_l_a_s_s _t_o _r_e_p_r_e_s_e_n_t _a _m_o_d_e_l-_v_i_e_w-_c_o_n_t_r_o_l_l_e_r
_o_b_j_e_c_t

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

     MVC is a virtual class to represent a model-view-controller
     object.  The MVC class will combine these three components (model,
     view and controller) so that the MVC objects can be reused and
     linked.

_O_b_j_e_c_t_s _f_r_o_m _t_h_e _C_l_a_s_s:

     A virtual Class: No objects may be created from it.

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

     '_m_o_d_e_l': the model object (will inherit from the gModel virtual
          class) 

     '_v_i_e_w_L_i_s_t': a list of the view objects that visualize the model 

     '_c_o_n_t_r_o_l_l_e_r': the environment that stores information for the MVC
          object 

_M_e_t_h_o_d_s:

     _c_o_n_t_r_o_l_l_e_r<- Sets the 'controller' slot 

     _c_o_n_t_r_o_l_l_e_r Returns the 'controller' slot 

     _m_o_d_e_l<- Sets the 'model' slot 

     _m_o_d_e_l Returns the 'model' slot 

     _v_i_e_w_L_i_s_t<- Sets the 'viewList' slot 

     _v_i_e_w_L_i_s_t Returns the 'viewList' slot 

_A_u_t_h_o_r(_s):

     Elizabeth Whalen

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

     'gModel-class', 'genView-class', 'singleModelMVC-class',
     'linkedModelMVC-class'

_E_x_a_m_p_l_e_s:

