Searched defs:viewColumnIndex (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java1824 * {@code viewColumnIndex} to the index of the column
1826 * column in the model. If {@code viewColumnIndex}
1827 * is less than zero, returns {@code viewColumnIndex}.
1830 * @param viewColumnIndex the index of the column in the view
1837 int viewColumnIndex) {
1838 if (viewColumnIndex < 0) {
1839 return viewColumnIndex;
1841 return cm.getColumn(viewColumnIndex).getModelIndex();
1836 convertColumnIndexToModel(TableColumnModel cm, int viewColumnIndex) argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJTable.java2570 * <code>viewColumnIndex</code> to the index of the column
2572 * column in the model. If <code>viewColumnIndex</code>
2573 * is less than zero, returns <code>viewColumnIndex</code>.
2575 * @param viewColumnIndex the index of the column in the view
2580 public int convertColumnIndexToModel(int viewColumnIndex) { argument
2582 getColumnModel(), viewColumnIndex);

Completed in 45 milliseconds