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 voidRadianceThemingCortex.ComponentScope. registerTabCloseChangeListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener tabCloseListener)Registers the specified listener on tab-close events on the specified tabbed pane.static voidRadianceThemingCortex.GlobalScope. registerTabCloseChangeListener(BaseTabCloseListener tabCloseListener)Registers the specified listener on tab-close events on all tabbed panes.static voidRadianceThemingCortex.ComponentScope. unregisterTabCloseChangeListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener tabCloseListener)Unregisters the specified listener on tab-close events on the specified tabbed pane.static voidRadianceThemingCortex.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 interfaceMultipleTabCloseListenerListener on multiple tab closing.interfaceTabCloseListenerListener on tab closing.interfaceVetoableMultipleTabCloseListenerVetoable listener on tabs closing.interfaceVetoableTabCloseListenerVetoable 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. generalListenersListeners registered on all tabbed panes.private java.util.Map<javax.swing.JTabbedPane,java.util.Set<BaseTabCloseListener>>TabCloseListenerManager. specificListenersListeners 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 voidTabCloseListenerManager. registerListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener listener)Registers the specified listener on tab-close events on the specified tabbed pane.voidTabCloseListenerManager. registerListener(BaseTabCloseListener listener)Registers the specified listener on tab-close events on all tabbed panes.voidTabCloseListenerManager. unregisterListener(javax.swing.JTabbedPane tabbedPane, BaseTabCloseListener listener)Unregisters the specified listener on tab-close events on the specified tabbed pane.voidTabCloseListenerManager. unregisterListener(BaseTabCloseListener listener)Unregisters the specified listener on tab-close events on all tabbed panes.
-