isSealedMethod            package:methods            R Documentation

_C_h_e_c_k _f_o_r _a _S_e_a_l_e_d _M_e_t_h_o_d _o_r _C_l_a_s_s

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

     These functions check for either a method or a class that has been
     "sealed" when it was defined, and which therefore cannot be
     re-defined.

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

     isSealedMethod(f, signature, fdef, where)
     isSealedClass(Class, where)

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

       f: The quoted name of the generic function. 

signature: The class names in the method's signature, as they would be
          supplied to 'setMethod'. 

    fdef: Optional, and usually omitted:  the generic function
          definition for 'f'. 

   Class: The quoted name of the class.

   where: where to search for the method or class definition.  By
          default, searches from the top environment of the call to
          'isSealedMethod' or 'isSealedClass', typically the global
          environment or the namespace of a package containing a call
          to one of the functions.

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

     In the R implementation of classes and methods, it is possible to
     seal the definition of either a class or a method.  The basic
     classes (numeric and other types of vectors, matrix and array
     data) are sealed.  So also are the methods for the primitive
     functions on those data types.  The effect is that programmers
     cannot re-define the meaning of these basic data types and
     computations.  More precisely, for primitive functions that depend
     on only one data argument, methods cannot be specified for basic
     classes.  For functions (such as the arithmetic operators) that
     depend on two arguments, methods can be specified if _one_ of
     those arguments is a basic class, but not if both are.

     Programmers can seal other class and method definitions by using
     the 'sealed' argument to 'setClass' or 'setMethod'.

_V_a_l_u_e:

     The functions return 'FALSE' if the method or class is not sealed
     (including the case that it is not defined); 'TRUE' if it is.

_R_e_f_e_r_e_n_c_e_s:

     The R package 'methods' implements, with a few exceptions, the
     programming interface for classes and methods in the book
     _Programming with Data_ (John M. Chambers, Springer, 1998), in
     particular sections 1.6, 2.7, 2.8, and chapters 7 and 8.

     While the programming interface for the 'methods' package follows
     the reference, the R software is an original implementation, so
     details in the reference that reflect the S4 implementation may
     appear differently in R.  Also, there are extensions to the
     programming interface developed more recently than the reference. 
     For a discussion of details and ongoing development, see the web
     page  <URL: http://developer.r-project.org/methodsPackage.html>
     and the pointers from that page.

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

     ## these are both TRUE
     isSealedMethod("+", c("numeric", "character"))
     isSealedClass("matrix")

     setClass("track",
                 representation(x="numeric", y="numeric"))
     ## but this is FALSE
     isSealedClass("track")
     ## and so is this
     isSealedClass("A Name for an undefined Class")
     ## and so are these, because only one of the two arguments is basic
     isSealedMethod("+", c("track", "numeric"))
     isSealedMethod("+", c("numeric", "track"))

