SOAPType              package:XMLSchema              R Documentation

_C_r_e_a_t_e_s _a _S_O_A_P_T_y_p_e _o_b_j_e_c_t

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

     This is a constructor function for filling in the general/common
     details  of the 'SOAPType-class' objects.

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

     SOAPType(name, ns = "", nsuri = "", namespaceDefs = list(), counts = numeric(), obj = new("SOAPType"))

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

    name: the name of the schema type (i.e. of the type or element),
          usually the value of the 'name' attribute

      ns: the namespace prefix from the XML type

   nsuri: the namespace URI

namespaceDefs: the namespace definitions, i.e. 'prefix = URI' values in
          effect for the XML element. This allows us to use and resolve
           the regular XSD schema, etc. URIs

  counts: a vector giving the minOccurs and maxOccurs values for the
          type.  See 'getElementCount' which is a non-exported
          convenience function.

     obj: the object whose slots are to be filled in. The user can pass
          this when creating an instance of a class derived from
          'SOAPType'.

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

     The value 'obj' with slots updated.

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

     Duncan Temple Lang

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

     'SOAPType-class' 'processSchemaTypes' 'readSchema'

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

       SOAPType("foo", count = c(1, Inf))

