Example #1
0
 /**
  * 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;
 }
Example #2
0
 public Table() {
   this.value = Nub.newList();
 }