protected void initBuffers()
{
if ((this.rowOut == null) || (((RowOutputBinary)this.rowOut).getBuffer().length > 256))
this.rowOut = new RowOutputBinary(256);
if ((this.rowIn == null) || (((RowInputBinary)this.rowIn).getBuffer().length > 256))
this.rowIn = new RowInputBinary(new byte[256]);
}