Uses of Interface
org.pushingpixels.radiance.theming.api.tabbed.BaseTabCloseListener
-
Packages that use BaseTabCloseListener Package Description org.pushingpixels.radiance.theming.api org.pushingpixels.radiance.theming.api.tabbed org.pushingpixels.radiance.theming.internal.utils -
-
Uses of BaseTabCloseListener in org.pushingpixels.radiance.theming.api
Methods in org.pushingpixels.radiance.theming.api that return types with arguments of type BaseTabCloseListener Modifier and Type Method Description static java.util.Set<BaseTabCloseListener>
RadianceThemingCortex.ComponentScope. getAllTabCloseListeners(javax.swing.JTabbedPane tabbedPane)
Returns all listeners registered on tab closing of the specified tabbed pane.static java.util.Set<BaseTabCloseListener>
RadianceThemingCortex.GlobalScope. getAllTabCloseListeners()
Returns the set of all listeners registered on tab-close events on all tabbed panes.Methods in org.pushingpixels.radiance.theming.api with parameters of type BaseTabCloseListener Modifier and Type Method Description static void
RadianceThemingCortex.ComponentScope. registerTabCloseChangeListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener tabCloseListener)
Registers the specified listener on tab-close events on the specified tabbed pane.static void
RadianceThemingCortex.GlobalScope. registerTabCloseChangeListener(BaseTabCloseListener tabCloseListener)
Registers the specified listener on tab-close events on all tabbed panes.static void
RadianceThemingCortex.ComponentScope. unregisterTabCloseChangeListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener tabCloseListener)
Unregisters the specified listener on tab-close events on the specified tabbed pane.static void
RadianceThemingCortex.GlobalScope. unregisterTabCloseChangeListener(BaseTabCloseListener tabCloseListener)
Unregisters the specified listener on tab-close events on all tabbed panes. -
Uses of BaseTabCloseListener in org.pushingpixels.radiance.theming.api.tabbed
Subinterfaces of BaseTabCloseListener in org.pushingpixels.radiance.theming.api.tabbed Modifier and Type Interface Description interface
MultipleTabCloseListener
Listener on multiple tab closing.interface
TabCloseListener
Listener on tab closing.interface
VetoableMultipleTabCloseListener
Vetoable listener on tabs closing.interface
VetoableTabCloseListener
Vetoable listener on tab closing. -
Uses of BaseTabCloseListener in org.pushingpixels.radiance.theming.internal.utils
Fields in org.pushingpixels.radiance.theming.internal.utils with type parameters of type BaseTabCloseListener Modifier and Type Field Description private java.util.Set<BaseTabCloseListener>
TabCloseListenerManager. generalListeners
Listeners registered on all tabbed panes.private java.util.Map<javax.swing.JTabbedPane,java.util.Set<BaseTabCloseListener>>
TabCloseListenerManager. specificListeners
Listeners registered on specific tabbed panes.Methods in org.pushingpixels.radiance.theming.internal.utils that return types with arguments of type BaseTabCloseListener Modifier and Type Method Description java.util.Set<BaseTabCloseListener>
TabCloseListenerManager. getListeners()
Returns the set of all listeners registered on tab-close events on all tabbed panes.java.util.Set<BaseTabCloseListener>
TabCloseListenerManager. getListeners(javax.swing.JTabbedPane tabbedPane)
Returns the set of all listeners registered on tab-close events on the specified tabbed pane.Methods in org.pushingpixels.radiance.theming.internal.utils with parameters of type BaseTabCloseListener Modifier and Type Method Description void
TabCloseListenerManager. registerListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener listener)
Registers the specified listener on tab-close events on the specified tabbed pane.void
TabCloseListenerManager. registerListener(BaseTabCloseListener listener)
Registers the specified listener on tab-close events on all tabbed panes.void
TabCloseListenerManager. unregisterListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener listener)
Unregisters the specified listener on tab-close events on the specified tabbed pane.void
TabCloseListenerManager. unregisterListener(BaseTabCloseListener listener)
Unregisters the specified listener on tab-close events on all tabbed panes.
-