226227228229230231232
} public void prependColumn(String name, int width, OutputFormat of) { this.columns.add(0, name); this.formats.add(0, of); this.widths.addColumn(0, new Column(width)); }
232233234235236237238
} public void appendColumn(String name, int width, OutputFormat of) { this.columns.add(name); this.formats.add(of); this.widths.addColumn(new Column(width)); }
221222223224225226227
227228229230231232233