Home | History | Annotate | Download | only in smackx

Lines Matching refs:Row

41     private List<Row> rows = new ArrayList<Row>();
91 rows.add(new Row(fieldList));
104 * Adds a new <code>Row</code>.
105 * @param row the new row to add.
107 public void addRow(Row row){
108 rows.add(row);
125 public Iterator<Row> getRows() {
126 return Collections.unmodifiableList(new ArrayList<Row>(rows)).iterator();
221 public static class Row {
224 public Row(List<Field> fields) {