Lines Matching refs:column

39  *  A <code>TableColumn</code> represents all the attributes of a column in a
42 * an editor that can be used to display and edit the values in this column.
45 * rather than a per column basis - see the
52 * The <code>modelIndex</code> is the column in the
54 * cells in this column. As the column moves around in the view this
61 * To show <code>TableColumn</code>s with the same column of
120 * The index of the column in the model which is to be displayed by
138 /** The width of the column. */
141 /** The minimum width of the column. */
144 /** The preferred width of the column. */
147 /** The maximum width of the column. */
150 /** The renderer used to draw the header of the column. */
153 /** The header value of the column. */
156 /** The renderer used to draw the data cells of the column. */
159 /** The editor used to edit the data cells of the column. */
162 /** If true, the user is allowed to resize the column; the default is true. */
237 * provide defaults based on the type of the data in this column.
238 * This column-centric rendering strategy can be circumvented by overriding
241 * @param modelIndex the index of the column
242 * in the model that supplies the data for this column in the table;
245 * @param width this column's preferred width and initial width
246 * @param cellRenderer the object used to render values in this column
247 * @param cellEditor the object used to edit values in this column
295 * Sets the model index for this column. The model index is the
296 * index of the column in the model that will be displayed by this
311 * Returns the model index for this column.
325 * @param identifier an identifier for this column
329 * description: A unique identifier for this column.
339 * Returns the <code>identifier</code> object for this column.
425 * to draw individual values for this column.
442 * values for this column. The <code>cellRenderer</code> of the column
443 * not only controls the visual look for the column, but is also used to
447 * class of the cells in that column. The default value for a
459 * Sets the editor to used by when a cell in this column is edited.
475 * <code>JTable</code> to edit values for this column. When the
478 * class of the cells in that column. The default value for a
493 * AWT, the <code>JTable</code> adjusts a column's width automatically
495 * table itself changes size, or a column's preferred width is changed.
498 * This method sets this column's width to <code>width</code>.
509 * description: The width of the column.
529 * Sets this column's preferred width to <code>preferredWidth</code>.
543 * description: The preferred width of the column.
582 * description: The minimum width of the column.
627 * description: The maximum width of the column.
655 * Sets whether this column can be resized.
661 * description: Whether or not this column can be resized.
686 * widths of this column to the widths of the minimum, maximum and preferred
806 boolean isSelected, boolean hasFocus, int row, int column) {