Searched refs:moveColumn (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/table/
H A DTableColumnModel.java86 public void moveColumn(int columnIndex, int newIndex); method in interface:TableColumnModel
H A DDefaultTableColumnModel.java176 public void moveColumn(int columnIndex, int newIndex) { method in class:DefaultTableColumnModel
179 throw new IllegalArgumentException("moveColumn() - Index out of range");
/openjdk7/jdk/src/share/demo/jfc/TableExample/
H A DOldJTable.java181 public void moveColumn(Object columnIdentifier, Object targetColumnIdentifier) { method in class:OldJTable
182 moveColumn(getColumnIndex(columnIdentifier),
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableHeaderUI.java242 cm.moveColumn(columnIndex, newColumnIndex);
293 header.getColumnModel().moveColumn(column, column);
898 moveColumn(true, th, ui);
900 moveColumn(false, th, ui);
913 private void moveColumn(boolean leftArrow, JTableHeader th, method in class:BasicTableHeaderUI.Actions
933 th.getColumnModel().moveColumn(oldIndex, newIndex);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java2828 public void moveColumn(int column, int targetColumn) { method in class:JTable
2829 getColumnModel().moveColumn(column, targetColumn);

Completed in 253 milliseconds