166167168169170171172173174175176
if (leftCellPadding > 0) { for (int j = 0;j < leftCellPadding;j++) { to.append(' '); } } reader.renderLine(to); // Right padding if (rightCellPadding > 0) { for (int j = 0;j < rightCellPadding;j++) { to.append(' '); }
4041424344454647484950
// For now height - 1 because of the char that goes to the line in some impl LineReader reader = renderer.reader(to.getWidth(), to.getHeight() - 1); if (reader != null) { while (reader.hasLine()) { reader.renderLine(to); to.append('\n'); } } }