EAF 7.4 Implementation

com.lutris.html
Class HtmlTableRow

java.lang.Object
  extended by com.lutris.html.HtmlTableRow

public class HtmlTableRow
extends java.lang.Object

This utility class is used to compose a row within a HTML table.

Version:
1.0 (File $Revision: 1.3 $)
Author:
Kyle Clark, Paul Morgan
See Also:
HtmlTable, HtmlTableDataCell, HtmlTableHeaderCell

Field Summary
static int ALIGN_CENTER
           
static int ALIGN_LEFT
           
static int ALIGN_RIGHT
           
static int VALIGN_BOTTOM
           
static int VALIGN_MIDDLE
           
static int VALIGN_TOP
           
 
Constructor Summary
HtmlTableRow()
           
HtmlTableRow(com.lutris.html.HtmlTableCell td)
           
HtmlTableRow(java.lang.String td)
           
 
Method Summary
 void addCell(com.lutris.html.HtmlTableCell td)
           
 void addCell(java.lang.String td)
           
 void setBackgroundColor(java.lang.String bgColor)
           
 void setColSpan(int colSpan)
           
 void setHorizontalAlignment(int alignment)
           
 void setRowSpan(int rowSpan)
           
 void setVerticalAlignment(int alignment)
           
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

ALIGN_LEFT

public static final int ALIGN_LEFT
See Also:
Constant Field Values

ALIGN_CENTER

public static final int ALIGN_CENTER
See Also:
Constant Field Values

ALIGN_RIGHT

public static final int ALIGN_RIGHT
See Also:
Constant Field Values

VALIGN_TOP

public static final int VALIGN_TOP
See Also:
Constant Field Values

VALIGN_MIDDLE

public static final int VALIGN_MIDDLE
See Also:
Constant Field Values

VALIGN_BOTTOM

public static final int VALIGN_BOTTOM
See Also:
Constant Field Values
Constructor Detail

HtmlTableRow

public HtmlTableRow()

HtmlTableRow

public HtmlTableRow(com.lutris.html.HtmlTableCell td)

HtmlTableRow

public HtmlTableRow(java.lang.String td)
Method Detail

addCell

public void addCell(com.lutris.html.HtmlTableCell td)

addCell

public void addCell(java.lang.String td)

setHorizontalAlignment

public void setHorizontalAlignment(int alignment)

setVerticalAlignment

public void setVerticalAlignment(int alignment)

setRowSpan

public void setRowSpan(int rowSpan)

setColSpan

public void setColSpan(int colSpan)

setBackgroundColor

public void setBackgroundColor(java.lang.String bgColor)

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

EAF 7.4 Implementation