Method getValueAt(int row, int column)
Return type:
java.lang.Object
Member of:
javax.swing.JTable
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
assertEquals(((SwingDummyModel) model.getSubModels().get(0)).getStringProperty(), table.getValueAt(0, 0));
2
assertEquals(((SwingDummyModel) model.getSubModels().get(3)).getStringProperty(), table.getValueAt(3, 0));
3
fileInfo.setAttribute("Path", (String)typeLibTable.getValueAt(0,0));
4
fileInfo.setAttribute("Path", (String)typeLibTable.getValueAt(0,0));
5
return ((table.getValueAt(row,0)!=null) ? ((String)table.getValueAt(row,0)).equals(GSSEditor._sweight) : false);
6
String idtext = keyTable.getValueAt(keyindex,0).toString();
7
if (name.equals(envTable.getValueAt(row, 0))) {
8
rselTable.setValueAt(sortTable.getValueAt(sortTable.getSelectedRow(),0),selectingEnumID,6);
9
IDColumn id = (IDColumn)miniTable.getValueAt(i, 0); // ID in column 0
10
ids[i] = (ObjectID)objectTable.getValueAt(rows[i], 0);
11
Object o = getValueAt(0, viewCol);
12
PublicCertificate cert = ((PublicCertificate)certificateTable.getValueAt(certindex,CertificateManagerTableModel.COL_KEY_ID));
13
table.getValueAt(row, col), false, false, row, col);
14
value = p_table.getValueAt( selectedRows[row], columnIndex );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.