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.
-
ATTR_ALIGN
- The ALIGN Attribute.
-
ATTR_ALIGN_CENTER
- The ALIGN Attribute value CENTER.
-
ATTR_ALIGN_LEFT
- The ALIGN Attribute value LEFT.
-
ATTR_ALIGN_RIGHT
- The ALIGN Attribute value RIGHT.
-
ATTR_BGCOLOR
- The BGCOLOR Attribute.
-
ATTR_VALIGN
- The VALIGN Attribute.
-
ATTR_VALIGN_BOTTOM
- The VALIGN Attribute value BOTTOM.
-
ATTR_VALIGN_MIDDLE
- The VALIGN Attribute value MIDDLE.
-
ATTR_VALIGN_TOP
- The VALIGN Attribute value TOP.
-
NAME
- The element's name.
-
Tr()
- Constructs a new, empty table row element.
-
Tr(String, String, String)
- Constructs a new, empty table element with the given attributes.
NAME
public static final String NAME
- The element's name.
ATTR_ALIGN
public static final String ATTR_ALIGN
- The ALIGN Attribute.
ATTR_ALIGN_LEFT
public static final String ATTR_ALIGN_LEFT
- The ALIGN Attribute value LEFT.
ATTR_ALIGN_CENTER
public static final String ATTR_ALIGN_CENTER
- The ALIGN Attribute value CENTER.
ATTR_ALIGN_RIGHT
public static final String ATTR_ALIGN_RIGHT
- The ALIGN Attribute value RIGHT.
ATTR_VALIGN
public static final String ATTR_VALIGN
- The VALIGN Attribute.
ATTR_VALIGN_TOP
public static final String ATTR_VALIGN_TOP
- The VALIGN Attribute value TOP.
ATTR_VALIGN_MIDDLE
public static final String ATTR_VALIGN_MIDDLE
- The VALIGN Attribute value MIDDLE.
ATTR_VALIGN_BOTTOM
public static final String ATTR_VALIGN_BOTTOM
- The VALIGN Attribute value BOTTOM.
ATTR_BGCOLOR
public static final String ATTR_BGCOLOR
- The BGCOLOR Attribute.
Tr
public Tr()
- Constructs a new, empty table row element.
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