/** * Delegates functionality to the underlying stream. */ public void read_boolean_array(BooleanSeqHolder holder, int offset, int length) { stream.read_boolean_array(holder, offset, length); }
/** * Read an array. In OMG specification is written that if the data does not * fit into the holder value field, that array must be resized. The * implementation follows this rule. If the holder value field contains null, * it is newly instantiated. */ public void read_boolean_array(BooleanSeqHolder holder, int offset, int length) { holder.value = ensureArray(holder.value, offset, length); read_boolean_array(holder.value, offset, length); }