protected void initBuffers()
{
if ((this.isQuoted) || (this.isAllQuoted))
{
this.rowIn = new RowInputTextQuoted(this.fs, this.vs, this.lvs, this.isAllQuoted);
this.rowOut = new RowOutputTextQuoted(this.fs, this.vs, this.lvs, this.isAllQuoted, this.stringEncoding);
}
else
{
this.rowIn = new RowInputText(this.fs, this.vs, this.lvs, false);
this.rowOut = new RowOutputText(this.fs, this.vs, this.lvs, false, this.stringEncoding);