/** * Set all members for the enclosed value type object. * * @param value an array of members to set. * * @throws InvalidSeq if the passed sequence is not valid. */ void set_members(NameValuePair[] value) throws InvalidSeq;
/** * Set all fields of this structure by name. * * @param members the array of the named values, * representing the structure fields. * * @throws InvalidSeq if the passed argument is invalid. */ void set_members(NameValuePair[] members) throws InvalidSeq;
/** * Set the elements from of the enclosed array of Anys. * * @throws InvalidSeq if the passed array contains the * elements of the different type of if the array size mismatch. */ void set_elements(Any[] an_array) throws InvalidSeq;
/** * Set the elements from of the enclosed array of Anys. * * @throws InvalidSeq if the passed array contains the * elements of the different type. */ void set_elements(Any[] an_array) throws InvalidSeq;