Method Summary |
|
public void | add(HtmlComponent comp) This method should not be used in this type of container. |
public void | addDisplay(String name, String caption, HtmlComponent component) Adds a component to the table a makes a caption comp. |
public void | addDisplay(String name, String caption, HtmlComponent component, boolean sameRow) Adds a component to the table a makes a caption comp. |
public void | addDisplay(String name, String caption, HtmlComponent component, boolean sameRow, HtmlTableCellProperties propCaption, HtmlTableCellProperties propSearch) Adds a component to the table a makes a caption comp. |
public boolean | executeEvent(int eventType) |
public void | generateHTML(java.io.PrintWriter p, int rowNo) |
public void | generateInitialHTML(java.io.PrintWriter p) |
public String | getAlign() Returns the alignment property for the table. |
public String | getBackgroundColor() Gets the background color for the table. |
public int | getBorder() Gets the border thickness for the table. |
public HtmlComponent | getCaptionComp(String name) This method will return a caption Component. |
public int | getCellPadding() Gets the cell padding for the table. |
public int | getCellSpacing() Gets the cell spacing for the table. |
public int | getColumnHeight(int column) |
public int | getColumnWidth(int column) |
public HtmlComponent | getComponent(String name) This method will return a single component if the
name or a portion of the name is found in this HtmlContainer or any
HtmlContainer contained in this container. |
public Enumeration | getComponents() This method will return a list of all components in the container. |
public int | getHeight() This method gets the minimum height of the table in pixels. |
public int | getRowCount() Returns the number of rows currently in the table. |
public HtmlTableRowProperties | getRowProperty(int propertyRow) This method was created in VisualAge. |
public String | getRowStyleClassName() |
public HtmlComponent | getSearchComp(String name) This method will return a serach component. |
public int | getSizeOption() This method returns the size option for the table and each cell in it. |
public String | getTheme() This method returns the property theme for the component. |
public int | getWidth() This method returns the width of the table. |
public void | insertRow(int row) Inserts an entire row before the specified one. |
public boolean | processParms(Hashtable parms, int rowNo) |
public void | remove(HtmlComponent comp) Removes an html component from this container. |
public void | removeAll() This method removes all of the components out of the table. |
public void | removeRow(int row) Removes an entire row from this container. |
public void | removeRow(HtmlComponent comp) |
public void | setAlign(String align) Sets the alignment property for the table. |
public void | setAllowNullCells(boolean value) Sets the border width for the table. |
public void | setBackgroundColor(String value) Sets the background color for the table. |
public void | setBorder(int border) Sets the border width for the table. |
public void | setCellPadding(int value) Sets the cell padding for the table. |
public void | setCellSpacing(int value) Sets the cell spacing for the table. |
public void | setColumnWidth(int column, int width) Sets the column width for a particular column in the table. |
public void | setComponentAt(int row, int column, HtmlComponent comp) Sets a component at a particular row column position in the table. |
public void | setComponentAt(int row, int column, HtmlComponent comp, HtmlTableCellProperties props) Sets a component at a particular row column position in the table. |
public void | setComponents(HtmlComponent comp) Sets a 2D array of components in the table. |
public void | setComponents(HtmlComponent comp, HtmlTableCellProperties props) Sets a 2D array of components in the table. |
public void | setCorrectColSpan(boolean correctColSpan) This method sets a flag indicating whether the bug related
to COLSPAN has been fixed. |
public void | setHeight(int height) This method sets the minimum height of the table in pixels. |
public void | setRowProperty(int row, HtmlTableRowProperties rowProp) This method was created in VisualAge. |
public void | setRowStyleClassName(String string) |
public void | setSizeOption(int option) This method sets the size option for the table and each cell in it. |
public void | setTheme(String theme) This method sets the property theme for the component. |
public void | setWidth(int width) This method sets the minimum width of the table in either pixels or percent depending on size option. |