| |
|
| java.lang.Object javax.swing.table.AbstractTableModel org.jacorb.imr.util.ImRPOATableModel
ImRPOATableModel | public class ImRPOATableModel extends AbstractTableModel (Code) | | This is the model for the POA table. It does
not write back data since the entries in the POA
table are not editable.
author: Nicolas Noffke author: $Log: ImRPOATableModel.java,v $ author: Revision 1.8 2006/06/16 12:36:28 alphonse.bendt author: fixed some findbugs warnings author: Revision 1.7 2004/05/06 12:39:59 nicolas author: Updated Copyright notice to 2004 author: Revision 1.6 2002/12/20 18:29:04 nicolas author: Updated Copyright year to 2003 author: Revision 1.5 2002/07/01 07:54:16 nicolas author: updated or inserted Copyright notice author: Revision 1.4 2002/03/19 09:25:11 nicolas author: updated copyright to 2002 author: Revision 1.3 2002/03/19 11:08:01 brose author: empty log message *** author: Revision 1.2 2002/03/17 18:44:01 brose author: empty log message *** author: Revision 1.4 1999/11/25 16:05:48 brose author: cosmetics author: Revision 1.3 1999/11/21 20:15:52 noffke author: GUI data is now updated periodically by a thread author: Revision 1.2 1999/11/14 17:15:40 noffke author: Cosmetics and commenting |
Method Summary | |
public Class | getColumnClass(int index) Get the class of a specific column.
Parameters: index - the columns index. | public int | getColumnCount() Get the number of columns. | public String | getColumnName(int column) Get the name of a specific column.
Parameters: column - the columns number. | public int | getRowCount() Get the number of rows. | public String | getServerName() Get the name of the server these POAs are associated with. | public Object | getValueAt(int row, int column) Get the value of a specific table cell.
Parameters: row - the cells row. Parameters: column - the cells column. | public void | setPOAs(POAInfo[] poas) Pass in the POAs the POA table should display. |
getColumnClass | public Class getColumnClass(int index)(Code) | | Get the class of a specific column.
Parameters: index - the columns index. the Class object for the column. |
getColumnCount | public int getColumnCount()(Code) | | Get the number of columns.
int the number of columns of this table. |
getColumnName | public String getColumnName(int column)(Code) | | Get the name of a specific column.
Parameters: column - the columns number. the columns name. |
getRowCount | public int getRowCount()(Code) | | Get the number of rows.
int the number of rows of this table. |
getServerName | public String getServerName()(Code) | | Get the name of the server these POAs are associated with.
a server name. |
getValueAt | public Object getValueAt(int row, int column)(Code) | | Get the value of a specific table cell.
Parameters: row - the cells row. Parameters: column - the cells column. Object the cells value. |
setPOAs | public void setPOAs(POAInfo[] poas)(Code) | | Pass in the POAs the POA table should display.
Notify the JTable of this event.
Parameters: poas - an array containing the POAs to display. |
|
|
|