All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class vnet.markup.html.Tr

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

public class Tr
extends Element
The table row (tr) Element for an HTML document.


Variable Index

 o ATTR_ALIGN
The ALIGN Attribute.
 o ATTR_ALIGN_CENTER
The ALIGN Attribute value CENTER.
 o ATTR_ALIGN_LEFT
The ALIGN Attribute value LEFT.
 o ATTR_ALIGN_RIGHT
The ALIGN Attribute value RIGHT.
 o ATTR_BGCOLOR
The BGCOLOR Attribute.
 o ATTR_VALIGN
The VALIGN Attribute.
 o ATTR_VALIGN_BOTTOM
The VALIGN Attribute value BOTTOM.
 o ATTR_VALIGN_MIDDLE
The VALIGN Attribute value MIDDLE.
 o ATTR_VALIGN_TOP
The VALIGN Attribute value TOP.
 o NAME
The element's name.

Constructor Index

 o Tr()
Constructs a new, empty table row element.
 o Tr(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_ALIGN
 public static final String ATTR_ALIGN
The ALIGN Attribute.

 o ATTR_ALIGN_LEFT
 public static final String ATTR_ALIGN_LEFT
The ALIGN Attribute value LEFT.

 o ATTR_ALIGN_CENTER
 public static final String ATTR_ALIGN_CENTER
The ALIGN Attribute value CENTER.

 o ATTR_ALIGN_RIGHT
 public static final String ATTR_ALIGN_RIGHT
The ALIGN Attribute value RIGHT.

 o ATTR_VALIGN
 public static final String ATTR_VALIGN
The VALIGN Attribute.

 o ATTR_VALIGN_TOP
 public static final String ATTR_VALIGN_TOP
The VALIGN Attribute value TOP.

 o ATTR_VALIGN_MIDDLE
 public static final String ATTR_VALIGN_MIDDLE
The VALIGN Attribute value MIDDLE.

 o ATTR_VALIGN_BOTTOM
 public static final String ATTR_VALIGN_BOTTOM
The VALIGN Attribute value BOTTOM.

 o ATTR_BGCOLOR
 public static final String ATTR_BGCOLOR
The BGCOLOR Attribute.

Constructors

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

 o Tr
 public Tr(String align,
           String valign,
           String bgcolor)
Constructs a new, empty table element with the given attributes.

Parameters:
align - horizontal alignment (may be null)
valign - vertical alignment (may be null)
bgcolor - the background colour (may be null)

All Packages  Class Hierarchy  This Package  Previous  Next  Index