Method setRowSelectionInterval(int index0, int index1)
Return type: void
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
if( model.getRowCount() > 0 ) abbrevsTable.setRowSelectionInterval( 0, 0 );
2
table.setRowSelectionInterval(2, 2);
3
campaigns.setRowSelectionInterval(0,0);
4
activTable.setRowSelectionInterval(0,0);
5
table.setRowSelectionInterval(1, 1);
6
table.setRowSelectionInterval(2, 2);
7
table.setRowSelectionInterval(2, 2);
8
table.setRowSelectionInterval(0,0);
9
setRowSelectionInterval(0, 0);
10
miniTable.setRowSelectionInterval(0,0);
11
_table.setRowSelectionInterval( index, index );
12
if (styleTable.getRowCount()>row){styleTable.setRowSelectionInterval(row,row);}
13
selectTable.setRowSelectionInterval(indexToSelect, indexToSelect);
14
mTable.setRowSelectionInterval(liRow-1,liRow-1);
15
setRowSelectionInterval( row, row);
16
table.setRowSelectionInterval(rowToSelect, rowToSelect);
17
table.setRowSelectionInterval(row, row);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.