All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class vnet.markup.html.Table

java.lang.Object
   |
   +----vnet.markup.Element
           |
           +----vnet.markup.html.Table

public class Table
extends Element
The table Element for an HTML document.


Variable Index

 o ATTR_BGCOLOR
The BGCOLOR Attribute.
 o ATTR_BORDER
The BORDER Attribute.
 o ATTR_CELLPADDING
The CELLPADDING Attribute.
 o ATTR_CELLSPACING
The CELLSPACING Attribute.
 o ATTR_WIDTH
The WIDTH Attribute.
 o NAME
The element's name.

Constructor Index

 o Table()
Constructs a new, empty table element.
 o Table(String, String, String, String, String)
Constructs a new, empty table element with the given attributes.

Variables

 o NAME
 public static final String NAME
The element's name.

 o ATTR_BORDER
 public static final String ATTR_BORDER
The BORDER Attribute.

 o ATTR_CELLPADDING
 public static final String ATTR_CELLPADDING
The CELLPADDING Attribute.

 o ATTR_CELLSPACING
 public static final String ATTR_CELLSPACING
The CELLSPACING Attribute.

 o ATTR_WIDTH
 public static final String ATTR_WIDTH
The WIDTH Attribute.

 o ATTR_BGCOLOR
 public static final String ATTR_BGCOLOR
The BGCOLOR Attribute.

Constructors

 o Table
 public Table()
Constructs a new, empty table element.

 o Table
 public Table(String border,
              String cellpadding,
              String cellspacing,
              String width,
              String bgcolor)
Constructs a new, empty table element with the given attributes.

Parameters:
border - width of the table's border (may be null)
cellpadding - amount of space between border and a cell's content (may be null)
cellspacing - amount of space between cells
width - the table's with.
bgcolor - the background colour (may be null)

All Packages  Class Hierarchy  This Package  Previous  Next  Index