/** * Delegates functionality to the underlying stream. */ public void read_ushort_array(UShortSeqHolder holder, int offset, int length) { stream.read_ushort_array(holder, offset, length); }
/** {@inheritDoc} */ public void read_ushort_array(UShortSeqHolder holder, int offset, int length) { holder.value = ensureArray(holder.value, offset, length); read_ushort_array(holder.value, offset, length); }