KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > joshy > html > table > Row


1 package org.joshy.html.table;
2
3 import java.util.*;
4 import org.w3c.dom.*;
5
6 public class Row {
7     List cells = new ArrayList();
8     public Node node;
9     public void addCell(Cell cell) {
10         cells.add(cell);
11     }
12     public Iterator getCellIterator() {
13         return cells.iterator();
14     }
15 }
16
17
Popular Tags