Interface TabCloseListener
-
- All Superinterfaces:
BaseTabCloseListener
- All Known Subinterfaces:
VetoableTabCloseListener
public interface TabCloseListener extends BaseTabCloseListener
Listener on tab closing. This class is part of officially supported API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
tabClosed(javax.swing.JTabbedPane tabbedPane, java.awt.Component tabComponent)
Called when a tab is closed.void
tabClosing(javax.swing.JTabbedPane tabbedPane, java.awt.Component tabComponent)
Called when a tab is about to be closed.
-
-
-
Method Detail
-
tabClosing
void tabClosing(javax.swing.JTabbedPane tabbedPane, java.awt.Component tabComponent)
Called when a tab is about to be closed.- Parameters:
tabbedPane
- Tabbed pane.tabComponent
- Tab component to be closed.
-
tabClosed
void tabClosed(javax.swing.JTabbedPane tabbedPane, java.awt.Component tabComponent)
Called when a tab is closed.- Parameters:
tabbedPane
- Tabbed pane.tabComponent
- Tab component closed.
-
-