Searched refs:modelColumnIndex (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java1846 * {@code modelColumnIndex} to the index of the column
1849 * is not being displayed. If {@code modelColumnIndex} is less than zero,
1850 * returns {@code modelColumnIndex}.
1853 * @param modelColumnIndex the index of the column in the model
1860 int modelColumnIndex) {
1861 if (modelColumnIndex < 0) {
1862 return modelColumnIndex;
1865 if (cm.getColumn(column).getModelIndex() == modelColumnIndex) {
1859 convertColumnIndexToView(TableColumnModel cm, int modelColumnIndex) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java2587 * <code>modelColumnIndex</code> to the index of the column
2590 * being displayed. If <code>modelColumnIndex</code> is less than zero,
2591 * returns <code>modelColumnIndex</code>.
2593 * @param modelColumnIndex the index of the column in the model
2598 public int convertColumnIndexToView(int modelColumnIndex) { argument
2600 getColumnModel(), modelColumnIndex);

Completed in 76 milliseconds