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 RowBox extends Box { 8 public List cells = new ArrayList(); 9 public Element elem; 10 public RowBox(int x, int y, int width, int height) { 11 super(x,y,width,height); 12 } 13 } 14 15