diff options
Diffstat (limited to 'libjava/classpath/javax/swing/table')
6 files changed, 627 insertions, 289 deletions
diff --git a/libjava/classpath/javax/swing/table/DefaultTableCellRenderer.java b/libjava/classpath/javax/swing/table/DefaultTableCellRenderer.java index 0d9b625..a9bbe9a 100644 --- a/libjava/classpath/javax/swing/table/DefaultTableCellRenderer.java +++ b/libjava/classpath/javax/swing/table/DefaultTableCellRenderer.java @@ -1,5 +1,5 @@ /* DefaultTableCellRenderer.java -- - Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005, 2006, Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -49,7 +49,6 @@ import javax.swing.JTable; import javax.swing.UIManager; import javax.swing.border.Border; import javax.swing.border.EmptyBorder; -import javax.swing.JTextField; /** * Class to display every cells. @@ -59,7 +58,7 @@ public class DefaultTableCellRenderer extends JLabel { static final long serialVersionUID = 7878911414715528324L; - protected static Border noFocusBorder = new EmptyBorder(0, 0, 0, 0); + protected static Border noFocusBorder = new EmptyBorder(1, 1, 1, 1); public static class UIResource extends DefaultTableCellRenderer implements javax.swing.plaf.UIResource @@ -164,17 +163,17 @@ public class DefaultTableCellRenderer extends JLabel super.setForeground(table.getForeground()); } + Border b = null; if (hasFocus) { - setBorder(UIManager.getBorder("Table.focusCellHighlightBorder")); - if (table.isCellEditable(row, column)) - { - super.setBackground(UIManager.getColor("Table.focusCellBackground")); - super.setForeground(UIManager.getColor("Table.focusCellForeground")); - } + if (isSelected) + b = UIManager.getBorder("Table.focusSelectedCellHighlightBorder"); + if (b == null) + b = UIManager.getBorder("Table.focusCellHighlightBorder"); } else - setBorder(BorderFactory.createEmptyBorder(1, 1, 1, 1)); + b = noFocusBorder; + setBorder(b); setFont(table.getFont()); diff --git a/libjava/classpath/javax/swing/table/DefaultTableColumnModel.java b/libjava/classpath/javax/swing/table/DefaultTableColumnModel.java index 1087177..24ac8fc 100644 --- a/libjava/classpath/javax/swing/table/DefaultTableColumnModel.java +++ b/libjava/classpath/javax/swing/table/DefaultTableColumnModel.java @@ -1,5 +1,5 @@ /* DefaultTableColumnModel.java -- - Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005, 2006, Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -46,6 +46,7 @@ import java.util.EventListener; import java.util.Vector; import javax.swing.DefaultListSelectionModel; +import javax.swing.JTable; import javax.swing.ListSelectionModel; import javax.swing.event.ChangeEvent; import javax.swing.event.EventListenerList; @@ -55,9 +56,11 @@ import javax.swing.event.TableColumnModelEvent; import javax.swing.event.TableColumnModelListener; /** - * DefaultTableColumnModel + * A model that stores information about the columns used in a {@link JTable}. + * + * @see JTable#setColumnModel(TableColumnModel) + * * @author Andrew Selkirk - * @version 1.0 */ public class DefaultTableColumnModel implements TableColumnModel, PropertyChangeListener, ListSelectionListener, @@ -66,88 +69,116 @@ public class DefaultTableColumnModel private static final long serialVersionUID = 6580012493508960512L; /** - * Columns that this model keeps track of. + * Storage for the table columns. */ protected Vector tableColumns; /** - * Selection Model that keeps track of columns selection + * A selection model that keeps track of column selections. */ protected ListSelectionModel selectionModel; /** - * Space between two columns. By default it is set to 1 + * The space between the columns (the default value is <code>1</code>). */ protected int columnMargin; /** - * listenerList keeps track of all listeners registered with this model + * Storage for the listeners registered with the model. */ protected EventListenerList listenerList = new EventListenerList(); /** - * changeEvent is fired when change occurs in one of the columns properties + * A change event used when notifying listeners of a change to the + * <code>columnMargin</code> field. This single event is reused for all + * notifications. */ + // FIXME: use lazy instantiation protected transient ChangeEvent changeEvent = new ChangeEvent(this); /** - * Indicates whether columns can be selected + * A flag that indicates whether or not columns can be selected. */ protected boolean columnSelectionAllowed; /** - * Total width of all the columns in this model + * The total width of all the columns in this model. */ protected int totalColumnWidth; /** - * Constructor DefaultTableColumnModel + * Creates a new table column model with zero columns. A default column + * selection model is created by calling {@link #createSelectionModel()}. + * The default value for <code>columnMargin</code> is <code>1</code> and + * the default value for <code>columnSelectionAllowed</code> is + * <code>false</code>. */ public DefaultTableColumnModel() { tableColumns = new Vector(); - setSelectionModel(createSelectionModel()); + selectionModel = createSelectionModel(); + selectionModel.addListSelectionListener(this); columnMargin = 1; columnSelectionAllowed = false; } /** - * addColumn adds column to the model. This method fires ColumnAdded - * event to model's registered TableColumnModelListeners. + * Adds a column to the model then calls + * {@link #fireColumnAdded(TableColumnModelEvent)} to notify the registered + * listeners. The model registers itself with the column as a + * {@link PropertyChangeListener} so that changes to the column width will + * invalidate the cached {@link #totalColumnWidth} value. * - * @param col column to add + * @param column the column (<code>null</code> not permitted). + * + * @throws IllegalArgumentException if <code>column</code> is + * <code>null</code>. + * + * @see #removeColumn(TableColumn) */ - public void addColumn(TableColumn col) + public void addColumn(TableColumn column) { - if (col == null) + if (column == null) throw new IllegalArgumentException("Null 'col' argument."); - tableColumns.add(col); + tableColumns.add(column); + column.addPropertyChangeListener(this); invalidateWidthCache(); - fireColumnAdded(new TableColumnModelEvent(this, 0, tableColumns.size() - 1)); + fireColumnAdded(new TableColumnModelEvent(this, 0, + tableColumns.size() - 1)); } /** - * removeColumn removes table column from the model. This method fires - * ColumnRemoved event to model's registered TableColumnModelListeners. + * Removes a column from the model then calls + * {@link #fireColumnRemoved(TableColumnModelEvent)} to notify the registered + * listeners. If the specified column does not belong to the model, or is + * <code>null</code>, this method does nothing. * - * @param col column to be removed + * @param column the column to be removed (<code>null</code> permitted). + * + * @see #addColumn(TableColumn) */ - public void removeColumn(TableColumn col) + public void removeColumn(TableColumn column) { - int index = this.tableColumns.indexOf(col); + int index = this.tableColumns.indexOf(column); if (index < 0) return; + tableColumns.remove(column); fireColumnRemoved(new TableColumnModelEvent(this, index, 0)); - tableColumns.remove(col); + column.removePropertyChangeListener(this); invalidateWidthCache(); } /** - * moveColumn moves column at index i to index j. This method fires - * ColumnMoved event to model's registered TableColumnModelListeners. + * Moves the column at index i to the position specified by index j, then + * calls {@link #fireColumnMoved(TableColumnModelEvent)} to notify registered + * listeners. * - * @param i index of the column that will be moved - * @param j index of column's new location + * @param i index of the column that will be moved. + * @param j index of the column's new location. + * + * @throws IllegalArgumentException if <code>i</code> or <code>j</code> are + * outside the range <code>0</code> to <code>N-1</code>, where + * <code>N</code> is the column count. */ public void moveColumn(int i, int j) { @@ -158,22 +189,27 @@ public class DefaultTableColumnModel throw new IllegalArgumentException("Index 'j' out of range."); Object column = tableColumns.remove(i); tableColumns.add(j, column); - fireColumnAdded(new TableColumnModelEvent(this, i, j)); + fireColumnMoved(new TableColumnModelEvent(this, i, j)); } /** - * setColumnMargin sets margin of the columns. - * @param m new column margin + * Sets the column margin then calls {@link #fireColumnMarginChanged()} to + * notify the registered listeners. + * + * @param margin the column margin. + * + * @see #getColumnMargin() */ - public void setColumnMargin(int m) + public void setColumnMargin(int margin) { - columnMargin = m; + columnMargin = margin; fireColumnMarginChanged(); } /** - * getColumnCount returns number of columns in the model - * @return int number of columns in the model + * Returns the number of columns in the model. + * + * @return The column count. */ public int getColumnCount() { @@ -181,8 +217,9 @@ public class DefaultTableColumnModel } /** - * getColumns - * @return Enumeration + * Returns an enumeration of the columns in the model. + * + * @return An enumeration of the columns in the model. */ public Enumeration getColumns() { @@ -214,18 +251,28 @@ public class DefaultTableColumnModel } /** - * getColumn returns column at the specified index - * @param i index of the column - * @return TableColumn column at the specified index + * Returns the column at the specified index. + * + * @param columnIndex the column index (in the range from <code>0</code> to + * <code>N-1</code>, where <code>N</code> is the number of columns in + * the model). + * + * @return The column at the specified index. + * + * @throws ArrayIndexOutOfBoundsException if <code>i</code> is not within + * the specified range. */ - public TableColumn getColumn(int i) + public TableColumn getColumn(int columnIndex) { - return (TableColumn) tableColumns.get(i); + return (TableColumn) tableColumns.get(columnIndex); } /** - * getColumnMargin returns column margin - * @return int column margin + * Returns the column margin. + * + * @return The column margin. + * + * @see #setColumnMargin(int) */ public int getColumnMargin() { @@ -233,16 +280,26 @@ public class DefaultTableColumnModel } /** - * getColumnIndexAtX returns column that contains specified x-coordinate. - * @param x x-coordinate that column should contain - * @return int index of the column that contains specified x-coordinate relative - * to this column model + * Returns the index of the column that contains the specified x-coordinate. + * This method assumes that: + * <ul> + * <li>column zero begins at position zero;</li> + * <li>all columns appear in order;</li> + * <li>individual column widths are taken into account, but the column margin + * is ignored.</li> + * </ul> + * If no column contains the specified position, this method returns + * <code>-1</code>. + * + * @param x the x-position. + * + * @return The column index, or <code>-1</code>. */ public int getColumnIndexAtX(int x) { for (int i = 0; i < tableColumns.size(); ++i) { - int w = ((TableColumn)tableColumns.get(i)).getWidth(); + int w = ((TableColumn) tableColumns.get(i)).getWidth(); if (0 <= x && x < w) return i; else @@ -252,10 +309,10 @@ public class DefaultTableColumnModel } /** - * getTotalColumnWidth returns total width of all the columns including - * column's margins. + * Returns total width of all the columns in the model, ignoring the + * {@link #columnMargin}. * - * @return total width of all the columns + * @return The total width of all the columns. */ public int getTotalColumnWidth() { @@ -265,24 +322,32 @@ public class DefaultTableColumnModel } /** - * setSelectionModel sets selection model that will be used by this ColumnTableModel - * to keep track of currently selected columns + * Sets the selection model that will be used to keep track of the selected + * columns. * - * @param model new selection model - * @exception IllegalArgumentException if model is null + * @param model the selection model (<code>null</code> not permitted). + * + * @throws IllegalArgumentException if <code>model</code> is + * <code>null</code>. + * + * @see #getSelectionModel() */ public void setSelectionModel(ListSelectionModel model) { if (model == null) throw new IllegalArgumentException(); + selectionModel.removeListSelectionListener(this); selectionModel = model; selectionModel.addListSelectionListener(this); } /** - * getSelectionModel returns selection model - * @return ListSelectionModel selection model + * Returns the selection model used to track table column selections. + * + * @return The selection model. + * + * @see #setSelectionModel(ListSelectionModel) */ public ListSelectionModel getSelectionModel() { @@ -290,10 +355,11 @@ public class DefaultTableColumnModel } /** - * setColumnSelectionAllowed sets whether column selection is allowed - * or not. + * Sets the flag that indicates whether or not column selection is allowed. * - * @param flag true if column selection is allowed and false otherwise + * @param flag the new flag value. + * + * @see #getColumnSelectionAllowed() */ public void setColumnSelectionAllowed(boolean flag) { @@ -301,10 +367,12 @@ public class DefaultTableColumnModel } /** - * getColumnSelectionAllowed indicates whether column selection is - * allowed or not. + * Returns <code>true</code> if column selection is allowed, and + * <code>false</code> if column selection is not allowed. * - * @return boolean true if column selection is allowed and false otherwise. + * @return A boolean. + * + * @see #setColumnSelectionAllowed(boolean) */ public boolean getColumnSelectionAllowed() { @@ -312,10 +380,9 @@ public class DefaultTableColumnModel } /** - * getSelectedColumns returns array containing indexes of currently - * selected columns + * Returns an array containing the indices of the selected columns. * - * @return int[] array containing indexes of currently selected columns + * @return An array containing the indices of the selected columns. */ public int[] getSelectedColumns() { @@ -356,8 +423,11 @@ public class DefaultTableColumnModel } /** - * getSelectedColumnCount returns number of currently selected columns - * @return int number of currently selected columns + * Returns the number of selected columns in the model. + * + * @return The selected column count. + * + * @see #getSelectionModel() */ public int getSelectedColumnCount() { @@ -395,10 +465,10 @@ public class DefaultTableColumnModel } /** - * addColumnModelListener adds specified listener to the model's - * listener list + * Registers a listener with the model, so that it will receive + * {@link TableColumnModelEvent} notifications. * - * @param listener the listener to add + * @param listener the listener (<code>null</code> ignored). */ public void addColumnModelListener(TableColumnModelListener listener) { @@ -406,10 +476,10 @@ public class DefaultTableColumnModel } /** - * removeColumnModelListener removes specified listener from the model's - * listener list. + * Deregisters a listener so that it no longer receives notification of + * changes to this model. * - * @param listener the listener to remove + * @param listener the listener to remove */ public void removeColumnModelListener(TableColumnModelListener listener) { @@ -417,6 +487,13 @@ public class DefaultTableColumnModel } /** + * Returns an array containing the listeners that are registered with the + * model. If there are no listeners, an empty array is returned. + * + * @return An array containing the listeners that are registered with the + * model. + * + * @see #addColumnModelListener(TableColumnModelListener) * @since 1.4 */ public TableColumnModelListener[] getColumnModelListeners() @@ -426,78 +503,97 @@ public class DefaultTableColumnModel } /** - * fireColumnAdded fires TableColumnModelEvent to registered - * TableColumnModelListeners to indicate that column was added - * - * @param e TableColumnModelEvent + * Sends the specified {@link TableColumnModelEvent} to all registered + * listeners, to indicate that a column has been added to the model. The + * event's <code>toIndex</code> attribute should contain the index of the + * added column. + * + * @param e the event. + * + * @see #addColumn(TableColumn) */ protected void fireColumnAdded(TableColumnModelEvent e) { TableColumnModelListener[] listeners = getColumnModelListeners(); - for (int i=0; i< listeners.length; i++) + for (int i = 0; i < listeners.length; i++) listeners[i].columnAdded(e); } /** - * fireColumnAdded fires TableColumnModelEvent to registered - * TableColumnModelListeners to indicate that column was removed - * - * @param e TableColumnModelEvent + * Sends the specified {@link TableColumnModelEvent} to all registered + * listeners, to indicate that a column has been removed from the model. The + * event's <code>fromIndex</code> attribute should contain the index of the + * removed column. + * + * @param e the event. + * + * @see #removeColumn(TableColumn) */ protected void fireColumnRemoved(TableColumnModelEvent e) { TableColumnModelListener[] listeners = getColumnModelListeners(); - for (int i=0; i< listeners.length; i++) + for (int i = 0; i < listeners.length; i++) listeners[i].columnRemoved(e); } /** - * fireColumnAdded fires TableColumnModelEvent to registered - * TableColumnModelListeners to indicate that column was moved - * - * @param e TableColumnModelEvent + * Sends the specified {@link TableColumnModelEvent} to all registered + * listeners, to indicate that a column in the model has been moved. The + * event's <code>fromIndex</code> attribute should contain the old column + * index, and the <code>toIndex</code> attribute should contain the new + * column index. + * + * @param e the event. + * + * @see #moveColumn(int, int) */ protected void fireColumnMoved(TableColumnModelEvent e) { TableColumnModelListener[] listeners = getColumnModelListeners(); - for (int i=0; i< listeners.length; i++) + for (int i = 0; i < listeners.length; i++) listeners[i].columnMoved(e); } /** - * fireColumnSelectionChanged fires TableColumnModelEvent to model's - * registered TableColumnModelListeners to indicate that different column - * was selected. + * Sends the specified {@link ListSelectionEvent} to all registered listeners, + * to indicate that the column selections have changed. * - * @param evt ListSelectionEvent + * @param e the event. + * + * @see #valueChanged(ListSelectionEvent) */ - protected void fireColumnSelectionChanged(ListSelectionEvent evt) + protected void fireColumnSelectionChanged(ListSelectionEvent e) { EventListener [] listeners = getListeners(TableColumnModelListener.class); for (int i = 0; i < listeners.length; ++i) - ((TableColumnModelListener)listeners[i]).columnSelectionChanged(evt); + ((TableColumnModelListener) listeners[i]).columnSelectionChanged(e); } /** - * fireColumnMarginChanged fires TableColumnModelEvent to model's - * registered TableColumnModelListeners to indicate that column margin - * was changed. + * Sends a {@link ChangeEvent} to the model's registered listeners to + * indicate that the column margin was changed. + * + * @see #setColumnMargin(int) */ protected void fireColumnMarginChanged() { EventListener [] listeners = getListeners(TableColumnModelListener.class); for (int i = 0; i < listeners.length; ++i) - ((TableColumnModelListener)listeners[i]).columnMarginChanged(changeEvent); + ((TableColumnModelListener) listeners[i]).columnMarginChanged(changeEvent); } /** - * getListeners returns currently registered listeners with this model. - * @param listenerType type of listeners to return + * Returns an array containing the listeners (of the specified type) that + * are registered with this model. + * + * @param listenerType the listener type (must indicate a subclass of + * {@link EventListener}, <code>null</code> not permitted). * - * @return EventListener[] array of model's listeners of the specified type + * @return An array containing the listeners (of the specified type) that + * are registered with this model. */ public EventListener[] getListeners(Class listenerType) { @@ -505,20 +601,26 @@ public class DefaultTableColumnModel } /** - * propertyChange handles changes occuring in the properties of the - * model's columns. + * Receives notification of property changes for the columns in the model. + * If the <code>width</code> property for any column changes, we invalidate + * the {@link #totalColumnWidth} value here. * - * @param evt PropertyChangeEvent + * @param event the event. */ - public void propertyChange(PropertyChangeEvent evt) + public void propertyChange(PropertyChangeEvent event) { - if (evt.getPropertyName().equals(TableColumn.COLUMN_WIDTH_PROPERTY)) - invalidateWidthCache(); + if (event.getPropertyName().equals("width")) + invalidateWidthCache(); } /** - * valueChanged handles changes in the selectionModel. - * @param e ListSelectionEvent + * Receives notification of the change to the list selection model, and + * responds by calling + * {@link #fireColumnSelectionChanged(ListSelectionEvent)}. + * + * @param e the list selection event. + * + * @see #getSelectionModel() */ public void valueChanged(ListSelectionEvent e) { @@ -526,10 +628,11 @@ public class DefaultTableColumnModel } /** - * createSelectionModel creates selection model that will keep track - * of currently selected column(s) + * Creates a default selection model to track the currently selected + * column(s). This method is called by the constructor and returns a new + * instance of {@link DefaultListSelectionModel}. * - * @return ListSelectionModel selection model of the columns + * @return A new default column selection model. */ protected ListSelectionModel createSelectionModel() { @@ -537,9 +640,10 @@ public class DefaultTableColumnModel } /** - * recalcWidthCache calculates total width of the columns. - * If the current cache of the total width is in invalidated state, - * then width is recalculated. Otherwise nothing is done. + * Recalculates the total width of the columns, if the cached value is + * <code>-1</code>. Otherwise this method does nothing. + * + * @see #getTotalColumnWidth() */ protected void recalcWidthCache() { @@ -548,13 +652,15 @@ public class DefaultTableColumnModel totalColumnWidth = 0; for (int i = 0; i < tableColumns.size(); ++i) { - totalColumnWidth += ((TableColumn)tableColumns.get(i)).getWidth(); + totalColumnWidth += ((TableColumn) tableColumns.get(i)).getWidth(); } } } /** - * invalidateWidthCache + * Sets the {@link #totalColumnWidth} field to <code>-1</code>. + * + * @see #recalcWidthCache() */ private void invalidateWidthCache() { diff --git a/libjava/classpath/javax/swing/table/DefaultTableModel.java b/libjava/classpath/javax/swing/table/DefaultTableModel.java index c281caa..09be2f7 100644 --- a/libjava/classpath/javax/swing/table/DefaultTableModel.java +++ b/libjava/classpath/javax/swing/table/DefaultTableModel.java @@ -294,12 +294,7 @@ public class DefaultTableModel extends AbstractTableModel else { int rowsToAdd = rowCount - existingRowCount; - for (int i = 0; i < rowsToAdd; i++) - { - Vector tmp = new Vector(); - tmp.setSize(columnIdentifiers.size()); - dataVector.add(tmp); - } + addExtraRows(rowsToAdd, columnIdentifiers.size()); fireTableRowsInserted(existingRowCount,rowCount-1); } } @@ -366,12 +361,7 @@ public class DefaultTableModel extends AbstractTableModel if (columnData.length > dataVector.size()) { int rowsToAdd = columnData.length - dataVector.size(); - for (int i = 0; i < rowsToAdd; i++) - { - Vector tmp = new Vector(); - tmp.setSize(columnIdentifiers.size()); - dataVector.add(tmp); - } + addExtraRows(rowsToAdd, columnIdentifiers.size()); } else if (columnData.length < dataVector.size()) { @@ -502,7 +492,8 @@ public class DefaultTableModel extends AbstractTableModel else { if (column < getColumnCount()) - { + { + checkSize(); Object id = columnIdentifiers.get(column); if (id != null) result = id.toString(); @@ -588,4 +579,41 @@ public class DefaultTableModel extends AbstractTableModel vector.add(convertToVector(data[i])); return vector; } + + /** + * This method adds some rows to <code>dataVector</code>. + * + * @param rowsToAdd number of rows to add + * @param nbColumns size of the added rows + */ + private void addExtraRows(int rowsToAdd, int nbColumns) + { + for (int i = 0; i < rowsToAdd; i++) + { + Vector tmp = new Vector(); + tmp.setSize(columnIdentifiers.size()); + dataVector.add(tmp); + } + } + + /** + * Checks the real columns/rows sizes against the ones returned by + * <code>getColumnCount()</code> and <code>getRowCount()</code>. + * If the supposed one are bigger, then we grow <code>columIdentifiers</code> + * and <code>dataVector</code> to their expected size. + */ + private void checkSize() + { + int columnCount = getColumnCount(); + int rowCount = getRowCount(); + + if (columnCount > columnIdentifiers.size()) + columnIdentifiers.setSize(columnCount); + + if (rowCount > dataVector.size()) + { + int rowsToAdd = rowCount - dataVector.size(); + addExtraRows(rowsToAdd, columnCount); + } + } } diff --git a/libjava/classpath/javax/swing/table/JTableHeader.java b/libjava/classpath/javax/swing/table/JTableHeader.java index 4e8dcd7..f7c1e1c 100644 --- a/libjava/classpath/javax/swing/table/JTableHeader.java +++ b/libjava/classpath/javax/swing/table/JTableHeader.java @@ -38,6 +38,8 @@ exception statement from your version. */ package javax.swing.table; +import gnu.classpath.NotImplementedException; + import java.awt.Color; import java.awt.Cursor; import java.awt.Dimension; @@ -80,232 +82,278 @@ public class JTableHeader extends JComponent protected class AccessibleJTableHeaderEntry extends AccessibleContext implements Accessible, AccessibleComponent { - public AccessibleJTableHeaderEntry(int c, JTableHeader p, JTable t) + public AccessibleJTableHeaderEntry(int c, JTableHeader p, JTable t) + throws NotImplementedException { throw new Error("not implemented"); } public void addFocusListener(FocusListener l) + throws NotImplementedException { throw new Error("not implemented"); } public void addPropertyChangeListener(PropertyChangeListener l) + throws NotImplementedException { throw new Error("not implemented"); } public boolean contains(Point p) + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleAction getAccessibleAction() + throws NotImplementedException { throw new Error("not implemented"); } public Accessible getAccessibleAt(Point p) + throws NotImplementedException { throw new Error("not implemented"); } public Accessible getAccessibleChild(int i) + throws NotImplementedException { throw new Error("not implemented"); } public int getAccessibleChildrenCount() + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleComponent getAccessibleComponent() + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleContext getAccessibleContext() + throws NotImplementedException { throw new Error("not implemented"); } public String getAccessibleDescription() + throws NotImplementedException { throw new Error("not implemented"); } public int getAccessibleIndexInParent() + throws NotImplementedException { throw new Error("not implemented"); } public String getAccessibleName() + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleRole getAccessibleRole() + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleSelection getAccessibleSelection() + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleStateSet getAccessibleStateSet() + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleText getAccessibleText() + throws NotImplementedException { throw new Error("not implemented"); } public AccessibleValue getAccessibleValue() + throws NotImplementedException { throw new Error("not implemented"); } public Color getBackground() + throws NotImplementedException { throw new Error("not implemented"); } public Rectangle getBounds() + throws NotImplementedException { throw new Error("not implemented"); } public Cursor getCursor() + throws NotImplementedException { throw new Error("not implemented"); } public Font getFont() + throws NotImplementedException { throw new Error("not implemented"); } public FontMetrics getFontMetrics(Font f) + throws NotImplementedException { throw new Error("not implemented"); } public Color getForeground() + throws NotImplementedException { throw new Error("not implemented"); } public Locale getLocale() + throws NotImplementedException { throw new Error("not implemented"); } public Point getLocation() + throws NotImplementedException { throw new Error("not implemented"); } public Point getLocationOnScreen() + throws NotImplementedException { throw new Error("not implemented"); } public Dimension getSize() + throws NotImplementedException { throw new Error("not implemented"); } public boolean isEnabled() + throws NotImplementedException { throw new Error("not implemented"); } public boolean isFocusTraversable() + throws NotImplementedException { throw new Error("not implemented"); } public boolean isShowing() + throws NotImplementedException { throw new Error("not implemented"); } public boolean isVisible() + throws NotImplementedException { throw new Error("not implemented"); } public void removeFocusListener(FocusListener l) + throws NotImplementedException { throw new Error("not implemented"); } public void removePropertyChangeListener(PropertyChangeListener l) + throws NotImplementedException { throw new Error("not implemented"); } public void requestFocus() + throws NotImplementedException { throw new Error("not implemented"); } public void setAccessibleDescription(String s) + throws NotImplementedException { throw new Error("not implemented"); } public void setAccessibleName(String s) + throws NotImplementedException { throw new Error("not implemented"); } public void setBackground(Color c) + throws NotImplementedException { throw new Error("not implemented"); } public void setBounds(Rectangle r) + throws NotImplementedException { throw new Error("not implemented"); } public void setCursor(Cursor c) + throws NotImplementedException { throw new Error("not implemented"); } public void setEnabled(boolean b) + throws NotImplementedException { throw new Error("not implemented"); } public void setFont(Font f) + throws NotImplementedException { throw new Error("not implemented"); } public void setForeground(Color c) + throws NotImplementedException { throw new Error("not implemented"); } public void setLocation(Point p) + throws NotImplementedException { throw new Error("not implemented"); } public void setSize(Dimension d) + throws NotImplementedException { throw new Error("not implemented"); } public void setVisible(boolean b) + throws NotImplementedException { throw new Error("not implemented"); } diff --git a/libjava/classpath/javax/swing/table/TableColumn.java b/libjava/classpath/javax/swing/table/TableColumn.java index 9f06c5b..fbb877d 100644 --- a/libjava/classpath/javax/swing/table/TableColumn.java +++ b/libjava/classpath/javax/swing/table/TableColumn.java @@ -1,5 +1,5 @@ /* TableColumn.java -- - Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005, 2006, Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -38,6 +38,8 @@ exception statement from your version. */ package javax.swing.table; +import java.awt.Component; +import java.awt.Dimension; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.io.Serializable; @@ -49,7 +51,6 @@ import javax.swing.event.SwingPropertyChangeSupport; * width, minimum width, preferred width and maximum width. * * @author Andrew Selkirk - * @version 1.0 */ public class TableColumn implements Serializable @@ -57,8 +58,9 @@ public class TableColumn static final long serialVersionUID = -6113660025878112608L; /** - * The name for the <code>columnWidth</code> property. Note that the typo - * in the name value is deliberate, to match the specification. + * The name for the <code>columnWidth</code> property (this field is + * obsolete and no longer used). Note also that the typo in the value + * string is deliberate, to match the specification. */ public static final String COLUMN_WIDTH_PROPERTY = "columWidth"; @@ -88,47 +90,48 @@ public class TableColumn protected Object identifier; /** - * The width. + * The current width for the column. */ protected int width; /** - * The minimum width. + * The minimum width for the column. */ protected int minWidth = 15; /** - * The preferred width. + * The preferred width for the column. */ private int preferredWidth; /** - * The maximum width. + * The maximum width for the column. */ protected int maxWidth = Integer.MAX_VALUE; /** - * headerRenderer + * The renderer for the column header. */ protected TableCellRenderer headerRenderer; /** - * The header value. + * The value for the column header. */ protected Object headerValue; /** - * cellRenderer + * The renderer for the regular cells in this column. */ protected TableCellRenderer cellRenderer; /** - * cellEditor + * An editor for the regular cells in this column. */ protected TableCellEditor cellEditor; /** - * isResizable + * A flag that determines whether or not the column is resizable (the default + * is <code>true</code>). */ protected boolean isResizable = true; @@ -140,7 +143,7 @@ public class TableColumn protected transient int resizedPostingDisableCount; /** - * changeSupport + * A storage and notification mechanism for property change listeners. */ private SwingPropertyChangeSupport changeSupport = new SwingPropertyChangeSupport(this); @@ -200,60 +203,31 @@ public class TableColumn } /** - * firePropertyChange - * - * @param property the name of the property - * @param oldValue the old value - * @param newValue the new value - */ - private void firePropertyChange(String property, Object oldValue, - Object newValue) - { - changeSupport.firePropertyChange(property, oldValue, newValue); - } - - /** - * firePropertyChange - * - * @param property the name of the property - * @param oldValue the old value - * @param newValue the new value - */ - private void firePropertyChange(String property, int oldValue, int newValue) - { - firePropertyChange(property, new Integer(oldValue), new Integer(newValue)); - } - - /** - * firePropertyChange - * - * @param property the name of the property - * @param oldValue the old value - * @param newValue the new value - */ - private void firePropertyChange(String property, boolean oldValue, - boolean newValue) - { - firePropertyChange(property, Boolean.valueOf(oldValue), - Boolean.valueOf(newValue)); - } - - /** * Sets the index of the column in the related {@link TableModel} that this - * <code>TableColumn</code> maps to. + * <code>TableColumn</code> maps to, and sends a {@link PropertyChangeEvent} + * (with the property name 'modelIndex') to all registered listeners. * * @param modelIndex the column index in the model. + * + * @see #getModelIndex() */ public void setModelIndex(int modelIndex) { - this.modelIndex = modelIndex; + if (this.modelIndex != modelIndex) + { + int oldValue = this.modelIndex; + this.modelIndex = modelIndex; + changeSupport.firePropertyChange("modelIndex", oldValue, modelIndex); + } } /** * Returns the index of the column in the related {@link TableModel} that * this <code>TableColumn</code> maps to. * - * @return the model index + * @return the model index. + * + * @see #setModelIndex(int) */ public int getModelIndex() { @@ -261,13 +235,21 @@ public class TableColumn } /** - * Sets the identifier for the column. + * Sets the identifier for the column and sends a {@link PropertyChangeEvent} + * (with the property name 'identifier') to all registered listeners. + * + * @param identifier the identifier (<code>null</code> permitted). * - * @param identifier the identifier + * @see #getIdentifier() */ public void setIdentifier(Object identifier) { - this.identifier = identifier; + if (this.identifier != identifier) + { + Object oldValue = this.identifier; + this.identifier = identifier; + changeSupport.firePropertyChange("identifier", oldValue, identifier); + } } /** @@ -285,11 +267,12 @@ public class TableColumn } /** - * Sets the header value and sends a {@link PropertyChangeEvent} to all - * registered listeners. The header value property uses the name - * {@link #HEADER_VALUE_PROPERTY}. + * Sets the header value and sends a {@link PropertyChangeEvent} (with the + * property name {@link #HEADER_VALUE_PROPERTY}) to all registered listeners. * - * @param headerValue the value of the header + * @param headerValue the value of the header (<code>null</code> permitted). + * + * @see #getHeaderValue() */ public void setHeaderValue(Object headerValue) { @@ -298,13 +281,16 @@ public class TableColumn Object oldValue = this.headerValue; this.headerValue = headerValue; - firePropertyChange(HEADER_VALUE_PROPERTY, oldValue, headerValue); + changeSupport.firePropertyChange(HEADER_VALUE_PROPERTY, oldValue, + headerValue); } /** * Returns the header value. * - * @return the value of the header + * @return the value of the header. + * + * @see #getHeaderValue() */ public Object getHeaderValue() { @@ -312,9 +298,13 @@ public class TableColumn } /** - * setHeaderRenderer + * Sets the renderer for the column header and sends a + * {@link PropertyChangeEvent} (with the property name + * {@link #HEADER_RENDERER_PROPERTY}) to all registered listeners. + * + * @param renderer the header renderer (<code>null</code> permitted). * - * @param renderer the renderer to use + * @see #getHeaderRenderer() */ public void setHeaderRenderer(TableCellRenderer renderer) { @@ -323,13 +313,16 @@ public class TableColumn TableCellRenderer oldRenderer = headerRenderer; headerRenderer = renderer; - firePropertyChange(HEADER_RENDERER_PROPERTY, - oldRenderer, headerRenderer); + changeSupport.firePropertyChange(HEADER_RENDERER_PROPERTY, oldRenderer, + headerRenderer); } /** - * getHeaderRenderer - * @return TableCellRenderer + * Returns the renderer for the column header. + * + * @return The renderer for the column header (possibly <code>null</code>). + * + * @see #setHeaderRenderer(TableCellRenderer) */ public TableCellRenderer getHeaderRenderer() { @@ -338,9 +331,12 @@ public class TableColumn /** * Sets the renderer for cells in this column and sends a - * {@link PropertyChangeEvent} to all registered listeners. + * {@link PropertyChangeEvent} (with the property name + * {@link #CELL_RENDERER_PROPERTY}) to all registered listeners. * * @param renderer the cell renderer (<code>null</code> permitted). + * + * @see #getCellRenderer() */ public void setCellRenderer(TableCellRenderer renderer) { @@ -349,14 +345,16 @@ public class TableColumn TableCellRenderer oldRenderer = cellRenderer; cellRenderer = renderer; - firePropertyChange(CELL_RENDERER_PROPERTY, - oldRenderer, cellRenderer); + changeSupport.firePropertyChange(CELL_RENDERER_PROPERTY, oldRenderer, + cellRenderer); } /** * Returns the renderer for the table cells in this column. * - * @return The cell renderer. + * @return The cell renderer (possibly <code>null</code>). + * + * @see #setCellRenderer(TableCellRenderer) */ public TableCellRenderer getCellRenderer() { @@ -364,19 +362,30 @@ public class TableColumn } /** - * setCellEditor + * Sets the cell editor for the column and sends a {@link PropertyChangeEvent} + * (with the property name 'cellEditor') to all registered listeners. + * + * @param cellEditor the cell editor (<code>null</code> permitted). * - * @param cellEditor the cell editor + * @see #getCellEditor() */ public void setCellEditor(TableCellEditor cellEditor) { - this.cellEditor = cellEditor; + if (this.cellEditor != cellEditor) + { + TableCellEditor oldValue = this.cellEditor; + this.cellEditor = cellEditor; + changeSupport.firePropertyChange("cellEditor", oldValue, cellEditor); + } } /** - * getCellEditor + * Returns the cell editor for the column (the default value is + * <code>null</code>). + * + * @return The cell editor (possibly <code>null</code>). * - * @return the cell editor + * @see #setCellEditor(TableCellEditor) */ public TableCellEditor getCellEditor() { @@ -384,9 +393,14 @@ public class TableColumn } /** - * setWidth + * Sets the width for the column and sends a {@link PropertyChangeEvent} + * (with the property name 'width') to all registered listeners. If the new + * width falls outside the range getMinWidth() to getMaxWidth() it is + * adjusted to the appropriate boundary value. + * + * @param newWidth the width. * - * @param newWidth the width + * @see #getWidth() */ public void setWidth(int newWidth) { @@ -406,13 +420,15 @@ public class TableColumn // however, tests show that the actual fired property name is 'width' // and even Sun's API docs say that this constant field is obsolete and // not used. - firePropertyChange("width", oldWidth, width); + changeSupport.firePropertyChange("width", oldWidth, width); } /** - * getWidth + * Returns the width for the column (the default value is <code>75</code>). * - * @return int + * @return The width. + * + * @see #setWidth(int) */ public int getWidth() { @@ -420,9 +436,15 @@ public class TableColumn } /** - * setPreferredWidth + * Sets the preferred width for the column and sends a + * {@link PropertyChangeEvent} (with the property name 'preferredWidth') to + * all registered listeners. If necessary, the supplied value will be + * adjusted to fit in the range {@link #getMinWidth()} to + * {@link #getMaxWidth()}. + * + * @param preferredWidth the preferred width. * - * @param preferredWidth the preferred width + * @see #getPreferredWidth() */ public void setPreferredWidth(int preferredWidth) { @@ -435,13 +457,17 @@ public class TableColumn else this.preferredWidth = preferredWidth; - firePropertyChange("preferredWidth", oldPrefWidth, this.preferredWidth); + changeSupport.firePropertyChange("preferredWidth", oldPrefWidth, + this.preferredWidth); } /** - * getPreferredWidth + * Returns the preferred width for the column (the default value is + * <code>75</code>). + * + * @return The preferred width. * - * @return the preferred width + * @see #setPreferredWidth(int) */ public int getPreferredWidth() { @@ -449,22 +475,39 @@ public class TableColumn } /** - * Sets the minimum width for the column and, if necessary, updates the - * <code>width</code> and <code>preferredWidth</code>. + * Sets the minimum width for the column and sends a + * {@link PropertyChangeEvent} (with the property name 'minWidth') to all + * registered listeners. If the current <code>width</code> and/or + * <code>preferredWidth</code> are less than the new minimum width, they are + * adjusted accordingly. * - * @param minWidth the minimum width + * @param minWidth the minimum width (negative values are treated as 0). + * + * @see #getMinWidth() */ public void setMinWidth(int minWidth) { - this.minWidth = minWidth; - setWidth(getWidth()); - setPreferredWidth(getPreferredWidth()); + if (minWidth < 0) + minWidth = 0; + if (this.minWidth != minWidth) + { + if (width < minWidth) + setWidth(minWidth); + if (preferredWidth < minWidth) + setPreferredWidth(minWidth); + int oldValue = this.minWidth; + this.minWidth = minWidth; + changeSupport.firePropertyChange("minWidth", oldValue, minWidth); + } } /** - * Returns the <code>TableColumn</code>'s minimum width. + * Returns the <code>TableColumn</code>'s minimum width (the default value + * is <code>15</code>). * * @return The minimum width. + * + * @see #setMinWidth(int) */ public int getMinWidth() { @@ -472,22 +515,37 @@ public class TableColumn } /** - * Sets the maximum width and, if necessary, updates the <code>width</code> - * and <code>preferredWidth</code>. + * Sets the maximum width for the column and sends a + * {@link PropertyChangeEvent} (with the property name 'maxWidth') to all + * registered listeners. If the current <code>width</code> and/or + * <code>preferredWidth</code> are greater than the new maximum width, they + * are adjusted accordingly. + * + * @param maxWidth the maximum width. * - * @param maxWidth the maximum width + * @see #getMaxWidth() */ public void setMaxWidth(int maxWidth) { - this.maxWidth = maxWidth; - setWidth(getWidth()); - setPreferredWidth(getPreferredWidth()); + if (this.maxWidth != maxWidth) + { + if (width > maxWidth) + setWidth(maxWidth); + if (preferredWidth > maxWidth) + setPreferredWidth(maxWidth); + int oldValue = this.maxWidth; + this.maxWidth = maxWidth; + changeSupport.firePropertyChange("maxWidth", oldValue, maxWidth); + } } /** - * Returns the maximum width. + * Returns the maximum width for the column (the default value is + * {@link Integer#MAX_VALUE}). * - * @return The maximum width. + * @return The maximum width for the column. + * + * @see #setMaxWidth(int) */ public int getMaxWidth() { @@ -495,21 +553,32 @@ public class TableColumn } /** - * setResizable + * Sets the flag that controls whether or not the column is resizable, and + * sends a {@link PropertyChangeEvent} (with the property name 'isResizable') + * to all registered listeners. * * @param isResizable <code>true</code> if this column is resizable, - * <code>false</code> otherwise + * <code>false</code> otherwise. + * + * @see #getResizable() */ public void setResizable(boolean isResizable) { - this.isResizable = isResizable; + if (this.isResizable != isResizable) + { + this.isResizable = isResizable; + changeSupport.firePropertyChange("isResizable", !this.isResizable, + isResizable); + } } /** - * getResizable + * Returns the flag that controls whether or not the column is resizable. * * @return <code>true</code> if this column is resizable, - * <code>false</code> otherwise + * <code>false</code> otherwise. + * + * @see #setResizable(boolean) */ public boolean getResizable() { @@ -517,11 +586,23 @@ public class TableColumn } /** - * sizeWidthToFit + * Sets the minimum, maximum, preferred and current width to match the + * minimum, maximum and preferred width of the header renderer component. + * If there is no header renderer component, this method does nothing. */ public void sizeWidthToFit() { - // TODO + if (headerRenderer == null) + return; + Component c = headerRenderer.getTableCellRendererComponent(null, + getHeaderValue(), false, false, 0, 0); + Dimension min = c.getMinimumSize(); + Dimension max = c.getMaximumSize(); + Dimension pref = c.getPreferredSize(); + setMinWidth(min.width); + setMaxWidth(max.width); + setPreferredWidth(pref.width); + setWidth(pref.width); } /** @@ -543,26 +624,55 @@ public class TableColumn } /** - * Adds a property change listener. + * Adds a listener so that it receives {@link PropertyChangeEvent} + * notifications from this column. The properties defined by the column are: + * <ul> + * <li><code>width</code> - see {@link #setWidth(int)};</li> + * <li><code>preferredWidth</code> - see {@link #setPreferredWidth(int)};</li> + * <li><code>minWidth</code> - see {@link #setMinWidth(int)};</li> + * <li><code>maxWidth</code> - see {@link #setMaxWidth(int)};</li> + * <li><code>modelIndex</code> - see {@link #setModelIndex(int)};</li> + * <li><code>isResizable</code> - see {@link #setResizable(boolean)};</li> + * <li><code>cellRenderer</code> - see + * {@link #setCellRenderer(TableCellRenderer)};</li> + * <li><code>cellEditor</code> - see + * {@link #setCellEditor(TableCellEditor)};</li> + * <li><code>headerRenderer</code> - see + * {@link #setHeaderRenderer(TableCellRenderer)};</li> + * <li><code>headerValue</code> - see {@link #setHeaderValue(Object)};</li> + * <li><code>identifier</code> - see {@link #setIdentifier(Object)}.</li> + * </ul> + * + * @param listener the listener to add (<code>null</code> is ignored). * - * @param listener the listener to add + * @see #removePropertyChangeListener(PropertyChangeListener) */ - public synchronized void addPropertyChangeListener(PropertyChangeListener listener) + public synchronized void addPropertyChangeListener( + PropertyChangeListener listener) { changeSupport.addPropertyChangeListener(listener); } /** - * removePropertyChangeListener - * @param listener the listener to remove + * Removes a listener so that it no longer receives + * {@link PropertyChangeEvent} notifications from this column. If + * <code>listener</code> is not registered with the column, or is + * <code>null</code>, this method does nothing. + * + * @param listener the listener to remove (<code>null</code> is ignored). */ - public synchronized void removePropertyChangeListener(PropertyChangeListener listener) + public synchronized void removePropertyChangeListener( + PropertyChangeListener listener) { changeSupport.removePropertyChangeListener(listener); } /** * Returns the property change listeners for this <code>TableColumn</code>. + * An empty array is returned if there are currently no listeners registered. + * + * @return The property change listeners registered with this column. + * * @since 1.4 */ public PropertyChangeListener[] getPropertyChangeListeners() @@ -571,8 +681,10 @@ public class TableColumn } /** - * createDefaultHeaderRenderer - * @return TableCellRenderer + * Creates and returns a default renderer for the column header (in this case, + * a new instance of {@link DefaultTableCellRenderer}). + * + * @return A default renderer for the column header. */ protected TableCellRenderer createDefaultHeaderRenderer() { diff --git a/libjava/classpath/javax/swing/table/TableColumnModel.java b/libjava/classpath/javax/swing/table/TableColumnModel.java index b006f9a..986c025 100644 --- a/libjava/classpath/javax/swing/table/TableColumnModel.java +++ b/libjava/classpath/javax/swing/table/TableColumnModel.java @@ -1,5 +1,5 @@ /* TableColumnModel.java -- - Copyright (C) 2002, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 2002, 2004, 2005, 2006, Free Software Foundation, Inc. This file is part of GNU Classpath. @@ -42,6 +42,8 @@ import java.util.Enumeration; import javax.swing.JTable; import javax.swing.ListSelectionModel; +import javax.swing.event.ChangeEvent; +import javax.swing.event.TableColumnModelEvent; import javax.swing.event.TableColumnModelListener; /** @@ -50,7 +52,6 @@ import javax.swing.event.TableColumnModelListener; * * @author Andrew Selkirk */ -// FIXME: The API documentation in this class is incomplete. public interface TableColumnModel { /** @@ -80,21 +81,26 @@ public interface TableColumnModel void moveColumn(int columnIndex, int newIndex); /** - * setColumnMargin - * @param margin Margin of column + * Sets the column margin and sends a {@link ChangeEvent} to all registered + * {@link TableColumnModelListener}s registered with the model. + * + * @param margin the column margin. + * + * @see #getColumnMargin() */ void setColumnMargin(int margin); /** * Returns the number of columns in the model. * - * @return The column count + * @return The column count. */ int getColumnCount(); /** - * getColumns - * @return Enumeration of columns + * Returns an enumeration of the columns in the model. + * + * @return An enumeration of the columns in the model. */ Enumeration getColumns(); @@ -123,30 +129,53 @@ public interface TableColumnModel * Returns the column margin. * * @return The column margin. + * + * @see #setColumnMargin(int) */ int getColumnMargin(); /** - * getColumnIndexAtX - * @return Column index as position x + * Returns the index of the column that contains the specified x-coordinate, + * assuming that: + * <ul> + * <li>column zero begins at position zero;</li> + * <li>all columns appear in order;</li> + * <li>individual column widths are taken into account, but the column margin + * is ignored.</li> + * </ul> + * If no column contains the specified position, this method returns + * <code>-1</code>. + * + * @param xPosition the x-position. + * + * @return The column index, or <code>-1</code>. */ int getColumnIndexAtX(int xPosition); /** - * getTotalColumnWidth - * @return Total column width + * Returns total width of all the columns in the model, ignoring the + * column margin (see {@link #getColumnMargin()}). + * + * @return The total width of all the columns. */ int getTotalColumnWidth(); /** - * setColumnSelectionAllowed - * @param value Set column selection + * Sets the flag that indicates whether or not column selection is allowed. + * + * @param allowed the new flag value. + * + * @see #getColumnSelectionAllowed() */ - void setColumnSelectionAllowed(boolean value); + void setColumnSelectionAllowed(boolean allowed); /** - * getColumnSelectionAllowed - * @return true if column selection allowed, false otherwise + * Returns <code>true</code> if column selection is allowed, and + * <code>false</code> if column selection is not allowed. + * + * @return A boolean. + * + * @see #setColumnSelectionAllowed(boolean) */ boolean getColumnSelectionAllowed(); @@ -157,31 +186,47 @@ public interface TableColumnModel int[] getSelectedColumns(); /** - * getSelectedColumnCount - * @return Count of selected columns + * Returns the number of selected columns in the model. + * + * @return The selected column count. + * + * @see #getSelectionModel() */ int getSelectedColumnCount(); /** - * setSelectionModel - * @param model ListSelectionModel + * Sets the selection model that will be used to keep track of the selected + * columns. + * + * @param model the selection model (<code>null</code> not permitted). + * + * @throws IllegalArgumentException if <code>model</code> is + * <code>null</code>. */ void setSelectionModel(ListSelectionModel model); /** - * getSelectionModel + * Returns the selection model used to track table column selections. + * + * @return The selection model. + * + * @see #setSelectionModel(ListSelectionModel) */ ListSelectionModel getSelectionModel(); /** - * addColumnModelListener - * @param listener TableColumnModelListener + * Registers a listener with the model, so that it will receive + * {@link TableColumnModelEvent} notifications. + * + * @param listener the listener (<code>null</code> ignored). */ void addColumnModelListener(TableColumnModelListener listener); /** - * removeColumnModelListener - * @param listener TableColumnModelListener + * Deregisters a listener, so that it will no longer receive + * {@link TableColumnModelEvent} notifications. + * + * @param listener the listener. */ void removeColumnModelListener(TableColumnModelListener listener); } |