XMLNode-class              package:XML              R Documentation

_C_l_a_s_s_e_s _t_o _d_e_s_c_r_i_b_e _a_n _X_M_L _n_o_d_e _o_b_j_e_c_t.

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

     These classes are intended to  represent an XML node, either
     directly in S or a reference to an internal libxml node.  Such
     nodes respond to queries about  their name, attributes, namespaces
     and children.   These are old-style, S3 class definitions at
     present.

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



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

     No methods defined with class "XMLNode" in the signature.

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

     Duncan Temple Lang

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

     <URL: http://www.w3.org/XML>, <URL: http://www.xmlsoft.org>

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

     'xmlTreeParse' 'xmlTree' 'newXMLNode' 'xmlNode'

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

      # An R-level XMLNode object
     a <- xmlNode("arg", attrs = c(default="T"),
                    xmlNode("name", "foo"), xmlNode("defaultValue","1:10"))
       

