Lines Matching defs:TableColumn

39  *  A <code>TableColumn</code> represents all the attributes of a column in a
41 * In addition, the <code>TableColumn</code> provides slots for a renderer and
48 * editor) in the <code>TableColumn</code> is <code>null</code>.
50 * The <code>TableColumn</code> stores the link between the columns in the
59 * recommend that the same <code>TableColumn</code> instance
61 * To show <code>TableColumn</code>s with the same column of
85 public class TableColumn extends Object implements Serializable {
121 * this <code>TableColumn</code>. As columns are moved around in the
129 * <code>TableColumn</code> as as an
193 * @see #TableColumn(int, int, TableCellRenderer, TableCellEditor)
195 public TableColumn() {
202 * @see #TableColumn(int, int, TableCellRenderer, TableCellEditor)
204 public TableColumn(int modelIndex) {
211 * @see #TableColumn(int, int, TableCellRenderer, TableCellEditor)
213 public TableColumn(int modelIndex, int width) {
219 * <code>TableColumn</code> with the specified model index,
221 * all <code>TableColumn</code> constructors delegate to this one.
254 public TableColumn(int modelIndex, int width,
297 * <code>TableColumn</code>. As the <code>TableColumn</code>
319 * Sets the <code>TableColumn</code>'s identifier to
357 * <code>TableColumn</code> is created, the default <code>headerValue</code>
388 * <code>TableColumn</code>'s header to <code>headerRenderer</code>.
409 * <code>TableColumn</code>. When the <code>headerRenderer</code> is
518 * Returns the width of the <code>TableColumn</code>. The default width is
552 * Returns the preferred width of the <code>TableColumn</code>.
563 * Sets the <code>TableColumn</code>'s minimum width to
597 * Returns the minimum width for the <code>TableColumn</code>. The
598 * <code>TableColumn</code>'s width can't be made less than this either
603 * @see #TableColumn(int, int, TableCellRenderer, TableCellEditor)
610 * Sets the <code>TableColumn</code>'s maximum width to
642 * Returns the maximum width for the <code>TableColumn</code>. The
643 * <code>TableColumn</code>'s width can't be made larger than this
671 * <code>TableColumn</code>'s
683 * Resizes the <code>TableColumn</code> to fit the width of its header cell.
688 * The transient "width" property of this TableColumn is also set to the
775 * to this TableColumn with addPropertyChangeListener().
793 * As of Java 2 platform v1.3, this method is not called by the <code>TableColumn</code>
795 * <code>TableColumn</code> to create a default header renderer.
825 } // End of class TableColumn