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 voidtabClosed(JTabbedPane tabbedPane, Component tabComponent)Called when a tab is closed.voidtabClosing(JTabbedPane tabbedPane, Component tabComponent)Called when a tab is about to be closed.
-
-
-
Method Detail
-
tabClosing
void tabClosing(JTabbedPane tabbedPane, Component tabComponent)
Called when a tab is about to be closed.- Parameters:
tabbedPane- Tabbed pane.tabComponent- Tab component to be closed.
-
tabClosed
void tabClosed(JTabbedPane tabbedPane, Component tabComponent)
Called when a tab is closed.- Parameters:
tabbedPane- Tabbed pane.tabComponent- Tab component closed.
-
-