/** * Add an array of items to this Table * * @param items * @return this */ public Table addRow(Object... items) { List<Object> list = Nub.newList(Nub.newList(), items); this.value.add(list); return this; }
public Table() { this.value = Nub.newList(); }