Method Summary |
|
public void | addTableModelListener(TableModelListener listener) Adds a listener that is notified each time a change to the data model occurs. |
public void | close() Close the
Handler and free all associated resources. |
public void | flush() Flush any buffered output. |
public int | getCapacity() Returns the capacity. |
public Class | getColumnClass(int columnIndex) Returns the most specific superclass for all the cell values in the column. |
public int | getColumnCount() Returns the number of columns in the model. |
public String | getColumnName(int columnIndex) Returns the name of the column at
columnIndex . |
public synchronized LogRecord | getLogRecord(int row) Returns the log record for the specified row.
Parameters: row - The row in the table. |
public synchronized int | getRowCount() Returns the number of rows in the model. |
public synchronized Object | getValueAt(int rowIndex, int columnIndex) Returns the value for the cell at
columnIndex and
rowIndex . |
public boolean | isCellEditable(int rowIndex, int columnIndex) Returns
false since cells are not editable. |
final boolean | isColumnVisible(int index) Returns
true if the given column is visible.
Parameters: index - One of LoggingPanel constants, which maps to entries inCOLUMN_NAMES. |
public synchronized void | publish(LogRecord record) Publish a
LogRecord . |
public void | removeTableModelListener(TableModelListener listener) Removes a listener from the list that is notified each time a change occurs. |
public synchronized void | setCapacity(int capacity) Set the capacity. |
final void | setColumnVisible(int index, boolean visible) Show or hide the given column.
Parameters: index - One of LoggingPanel constants, which maps to entries inCOLUMN_NAMES. |
public void | setValueAt(Object aValue, int rowIndex, int columnIndex) Do nothing since cells are not editable. |