Lines Matching refs:column

47  *     the user clicked a column header in a table.
112 * Reverses the sort order of the specified column. It is up to
115 * descending to ascending) if the specified column is already the
116 * primary sorted column; otherwise, makes the specified column
117 * the primary sorted column, with an ascending sort order. If
118 * the specified column is not sortable, this method has no
125 * @param column the column to toggle the sort ordering of, in
127 * @throws IndexOutOfBoundsException if column is outside the range of
130 public abstract void toggleSortOrder(int column);
277 * Invoked when the column in the rows have been updated in
285 * @param column the column that has changed, in terms of the underlying
290 * <code>column</code> is outside the range of the underlying
293 public abstract void rowsUpdated(int firstRow, int endRow, int column);
347 * SortKey describes the sort order for a particular column. The
348 * column index is in terms of the underlying model, which may differ
354 private int column;
358 * Creates a <code>SortKey</code> for the specified column with
361 * @param column index of the column, in terms of the model
366 public SortKey(int column, SortOrder sortOrder) {
371 this.column = column;
376 * Returns the index of the column.
378 * @return index of column
381 return column;
385 * Returns the sort order of the column.
387 * @return the sort order of the column
400 result = 37 * result + column;
408 * references the same column and sort order, the two objects
419 return (((SortKey)o).column == column &&