Searched refs:getValueAt (Results 1 - 25 of 40) sorted by relevance

12

/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DTableSorter.java63 * getValueAt(row, col) it redirects them to its model via the mapping
99 Object o1 = data.getValueAt(row1, column);
100 Object o2 = data.getValueAt(row2, column);
118 Number n1 = (Number) data.getValueAt(row1, column);
120 Number n2 = (Number) data.getValueAt(row2, column);
131 Date d1 = (Date) data.getValueAt(row1, column);
133 Date d2 = (Date) data.getValueAt(row2, column);
144 String s1 = (String) data.getValueAt(row1, column);
145 String s2 = (String) data.getValueAt(row2, column);
156 Boolean bool1 = (Boolean) data.getValueAt(row
303 public Object getValueAt(int aRow, int aColumn) { method in class:TableSorter
[all...]
H A DTableMap.java74 public Object getValueAt(int aRow, int aColumn) { method in class:TableMap
75 return model.getValueAt(aRow, aColumn);
H A DTableExample3.java112 public Object getValueAt(int row, int col) {
125 return getValueAt(0, col).getClass();
H A DOldJTable.java165 public Object getValueAt(Object columnIdentifier, int rowIndex) { method in class:OldJTable
166 return super.getValueAt(rowIndex, getColumnIndex(columnIdentifier));
242 public Object getValueAt(int columnIndex, int rowIndex) {
243 return super.getValueAt(rowIndex, columnIndex);
H A DTableExample4.java114 public Object getValueAt(int row, int col) {
127 return getValueAt(0, c).getClass();
H A DJDBCAdapter.java205 public Object getValueAt(int aRow, int aColumn) { method in class:JDBCAdapter
262 getValueAt(row, col));
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DTreeTableModel.java61 public Object getValueAt(Object node, int column); method in interface:TreeTableModel
H A DSimpleTreeTableModel.java59 public Object getValueAt(Object node, int column) { method in class:SimpleTreeTableModel
H A DTreeTableModelAdapter.java112 public Object getValueAt(int row, int column) { method in class:TreeTableModelAdapter
113 return treeTableModel.getValueAt(nodeForRow(row), column);
/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableModel.java114 public Object getValueAt(int rowIndex, int columnIndex); method in interface:TableModel
123 * @see #getValueAt
H A DTableRowSorter.java268 public Object getValueAt(int row, int column) { method in class:TableRowSorter.TableRowSorterModelWrapper
269 return tableModel.getValueAt(row, column);
284 // No converter, use getValueAt followed by toString
285 Object o = getValueAt(row, column);
/openjdk7/jdk/test/javax/swing/JTable/6937798/
H A Dbug6937798.java136 public Object getValueAt(int row, int col) {
145 return getValueAt(0, col).getClass();
/openjdk7/jdk/test/javax/swing/JTable/6777378/
H A Dbug6777378.java65 public Object getValueAt(int rowIndex, int columnIndex) {
/openjdk7/jdk/test/javax/swing/JTable/
H A DTest6888156.java63 @Override public Object getValueAt(int rowIndex, int columnIndex) {
/openjdk7/jdk/test/javax/swing/AbstractButton/6711682/
H A Dbug6711682.java71 if (!Boolean.TRUE.equals(table.getValueAt(i, 0))) {
90 if (Boolean.TRUE.equals(table.getValueAt(i, 0))) {
/openjdk7/jdk/test/javax/swing/JTable/7055065/
H A Dbug7055065.java146 public Object getValueAt(int row, int col) {
155 return getValueAt(0, c).getClass();
/openjdk7/jdk/test/javax/swing/JTable/7068740/
H A Dbug7068740.java63 public Object getValueAt(int row, int column) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DTableSorter.java176 mid = getValueAt( ( lo0 + hi0 ) / 2 , key);
185 ( compareS(mid,getValueAt(lo,key), isAscending) ))
192 ( compareG(mid,getValueAt(hi,key), isAscending) ))
H A DXMBeanAttributes.java157 Object obj = getModel().getValueAt(row, column);
239 Object obj = getModel().getValueAt(row, col);
300 .getValueAt(row, VALUE_COLUMN);
369 Object obj = getModel().getValueAt(row, col);
557 Object obj = getModel().getValueAt(row, VALUE_COLUMN);
573 Object obj = getModel().getValueAt(row, VALUE_COLUMN);
580 (String) getModel().getValueAt(row,
824 Object obj = getModel().getValueAt(row,
855 Object obj = getModel().getValueAt(editingRow, editingColumn);
1002 Object tableValue = model.getValueAt(
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DObjectHistogramPanel.java190 public Object getValueAt(int row, int col) { method in class:ObjectHistogramPanel.ObjectHistogramTableModel
307 value = (String)model.getValueAt(i, 2);
318 value = (String)model.getValueAt(i, 2);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/bugspot/
H A DRegisterPanel.java77 public Object getValueAt(int row, int col) {
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileSystemModel.java226 return getValueAt(row, 0);
231 public Object getValueAt(int row, final int col) { method in class:AquaFileSystemModel
237 return fileCache.elementAt(row).getValueAt(col);
359 public Object getValueAt(final int col) { method in class:AquaFileSystemModel.SortableFile
/openjdk7/jdk/test/javax/swing/JTable/4220171/
H A Dbug4220171.java88 if (table.getValueAt(row, column) != null) {
/openjdk7/jdk/src/share/demo/management/JTop/
H A DJTop.java161 public Object getValueAt(int row, int col) { method in class:JTop.MyTableModel
182 return getValueAt(0, c).getClass();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultRowSorter.java709 * <code>ModelWrapper.getValueAt</code> will be used. It is up to
955 v1 = getModelWrapper().getValueAt(model1, column);
956 v2 = getModelWrapper().getValueAt(model2, column);
1285 public abstract Object getValueAt(int row, int column); method in class:DefaultRowSorter.ModelWrapper
1290 * the result from <code>getValueAt</code> (making sure
1301 Object o = getValueAt(row, column);
1348 return getModelWrapper().getValueAt(modelIndex, index);

Completed in 56 milliseconds

12