1 package org.joshy.html.table; 2 3 import java.util.*; 4 import org.w3c.dom.*; 5 import org.joshy.html.box.CellBox; 6 7 public class Cell { 8 public Node node; 9 public int width; 10 public int height; 11 public int col_span = 1; 12 public int row_span = 1; 13 int getColumnSpan() { 14 return col_span; 15 } 16 int getRowSpan() { 17 return row_span; 18 } 19 int getWidth() { 20 return this.width; 21 } 22 int getHeight() { 23 return this.height; 24 } 25 26 public CellBox cb; 27 } 28 29 | Popular Tags |