public interface

TableColumnModelListener

implements EventListener
javax.swing.event.TableColumnModelListener
Known Indirect Subclasses

Class Overview

TableColumnModelListener defines the interface for an object that listens to changes in a TableColumnModel.

Summary

Public Methods
abstract void columnAdded(TableColumnModelEvent e)
Tells listeners that a column was added to the model.
abstract void columnMarginChanged(ChangeEvent e)
Tells listeners that a column was moved due to a margin change.
abstract void columnMoved(TableColumnModelEvent e)
Tells listeners that a column was repositioned.
abstract void columnRemoved(TableColumnModelEvent e)
Tells listeners that a column was removed from the model.
abstract void columnSelectionChanged(ListSelectionEvent e)
Tells listeners that the selection model of the TableColumnModel changed.

Public Methods

public abstract void columnAdded (TableColumnModelEvent e)

Tells listeners that a column was added to the model.

public abstract void columnMarginChanged (ChangeEvent e)

Tells listeners that a column was moved due to a margin change.

public abstract void columnMoved (TableColumnModelEvent e)

Tells listeners that a column was repositioned.

public abstract void columnRemoved (TableColumnModelEvent e)

Tells listeners that a column was removed from the model.

public abstract void columnSelectionChanged (ListSelectionEvent e)

Tells listeners that the selection model of the TableColumnModel changed.