EventListener
JTable
, JTable.AccessibleJTable
, JTableHeader
public interface TableColumnModelListener extends EventListener
Modifier and Type | Method | Description |
---|---|---|
void |
columnAdded |
Tells listeners that a column was added to the model. |
void |
columnMarginChanged |
Tells listeners that a column was moved due to a margin change. |
void |
columnMoved |
Tells listeners that a column was repositioned. |
void |
columnRemoved |
Tells listeners that a column was removed from the model. |
void |
columnSelectionChanged |
Tells listeners that the selection model of the TableColumnModel changed. |
void columnAdded(TableColumnModelEvent e)
e
- a TableColumnModelEvent
void columnRemoved(TableColumnModelEvent e)
e
- a TableColumnModelEvent
void columnMoved(TableColumnModelEvent e)
e
- a TableColumnModelEvent
void columnMarginChanged(ChangeEvent e)
e
- a ChangeEvent
void columnSelectionChanged(ListSelectionEvent e)
e
- a ListSelectionEvent
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.desktop/javax/swing/event/TableColumnModelListener.html