1 package org.joshy.html.box; 2 import java.awt.Point ; 3 import java.util.List ; 4 import java.util.ArrayList ; 5 import org.w3c.dom.*; 6 7 public class TableBox extends BlockBox { 8 public List rows = new ArrayList (); 9 public Element elem; 10 public TableBox() { 11 super(); 12 } 13 public TableBox(int x, int y, int width, int height) { 14 super(x,y,width,height); 15 } 16 public Point spacing; 17 } 18 19 | Popular Tags |