HTMLTablepublic final class HTMLTable extends IElement.Factory.ElementImpl
Fields Summary |
---|
private IElement | m_caption |
Constructors Summary |
---|
public HTMLTable(String width, String border, String cellpadding, String cellspacing)
super (Tag.TABLE, AttributeSet.create ());
final AttributeSet attrs = getAttributes ();
if (width != null) attrs.set (Attribute.WIDTH, width);
if (border != null) attrs.set (Attribute.BORDER, border);
if (cellpadding != null) attrs.set (Attribute.CELLPADDING, cellpadding);
if (cellspacing != null) attrs.set (Attribute.CELLSPACING, cellspacing);
//m_rows = new LinkedList ();
|
|