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.
-
ATTR_BGCOLOR
- The BGCOLOR Attribute.
-
ATTR_BORDER
- The BORDER Attribute.
-
ATTR_CELLPADDING
- The CELLPADDING Attribute.
-
ATTR_CELLSPACING
- The CELLSPACING Attribute.
-
ATTR_WIDTH
- The WIDTH Attribute.
-
NAME
- The element's name.
-
Table()
- Constructs a new, empty table element.
-
Table(String, String, String, String, String)
- Constructs a new, empty table element with the given attributes.
NAME
public static final String NAME
- The element's name.
ATTR_BORDER
public static final String ATTR_BORDER
- The BORDER Attribute.
ATTR_CELLPADDING
public static final String ATTR_CELLPADDING
- The CELLPADDING Attribute.
ATTR_CELLSPACING
public static final String ATTR_CELLSPACING
- The CELLSPACING Attribute.
ATTR_WIDTH
public static final String ATTR_WIDTH
- The WIDTH Attribute.
ATTR_BGCOLOR
public static final String ATTR_BGCOLOR
- The BGCOLOR Attribute.
Table
public Table()
- Constructs a new, empty table element.
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