FileDocCategorySizeDatePackage
TD.javaAPI DocGlassfish v2 API2370Fri May 04 22:34:48 BST 2007com.sun.enterprise.diagnostics.report.html

TD

public class TD extends CSSElement
author
Jagadish

Fields Summary
Constructors Summary
public TD()
Creates a new instance of TD

        super("TD");
    
public TD(int rowSpan, int colSpan)

        this();
        addAttribute("rowspan", String.valueOf(rowSpan));
        addAttribute("colspan", String.valueOf(colSpan));
    
Methods Summary