< prev index next >

src/java.desktop/share/classes/javax/swing/JTable.java

Print this page

        

*** 5808,5817 **** --- 5808,5818 ---- * where 0 is the first row * @param column the column of the cell to edit, * where 0 is the first column * @return the <code>Component</code> being edited */ + @SuppressWarnings("deprecation") public Component prepareEditor(TableCellEditor editor, int row, int column) { Object value = getValueAt(row, column); boolean isSelected = isCellSelected(row, column); Component comp = editor.getTableCellEditorComponent(this, value, isSelected, row, column);
*** 8786,8795 **** --- 8787,8797 ---- } else { return null; } } + @SuppressWarnings("deprecation") public boolean isFocusTraversable() { AccessibleContext ac = getCurrentAccessibleContext(); if (ac instanceof AccessibleComponent) { return ((AccessibleComponent) ac).isFocusTraversable(); } else {
*** 9638,9647 **** --- 9640,9650 ---- * @see AccessibleContext#getAccessibleStateSet * @see AccessibleState#FOCUSABLE * @see AccessibleState#FOCUSED * @see AccessibleStateSet */ + @SuppressWarnings("deprecation") public boolean isFocusTraversable() { AccessibleContext ac = getCurrentAccessibleContext(); if (ac instanceof AccessibleComponent) { return ((AccessibleComponent) ac).isFocusTraversable(); } else {
< prev index next >