pivot.wtk
Class TabPaneListener.Adapter

java.lang.Object
  extended by pivot.wtk.TabPaneListener.Adapter
All Implemented Interfaces:
TabPaneListener
Enclosing interface:
TabPaneListener

public static class TabPaneListener.Adapter
extends Object
implements TabPaneListener

Adapts the TabPaneListener interface.

Author:
tvolkert

Nested Class Summary
 
Nested classes/interfaces inherited from interface pivot.wtk.TabPaneListener
TabPaneListener.Adapter
 
Constructor Summary
TabPaneListener.Adapter()
           
 
Method Summary
 void cornerChanged(TabPane tabPane, Component previousCorner)
          Called when a tab pane's corner component (the component in the free space next to the tabs) has changed.
 void tabInserted(TabPane tabPane, int index)
          Called when a tab has been inserted into a tab pane's tab sequence.
 void tabsRemoved(TabPane tabPane, int index, Sequence<Component> tabs)
          Called when a tab has been removed from a tab pane's tab sequence.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TabPaneListener.Adapter

public TabPaneListener.Adapter()
Method Detail

tabInserted

public void tabInserted(TabPane tabPane,
                        int index)
Description copied from interface: TabPaneListener
Called when a tab has been inserted into a tab pane's tab sequence.

Specified by:
tabInserted in interface TabPaneListener

tabsRemoved

public void tabsRemoved(TabPane tabPane,
                        int index,
                        Sequence<Component> tabs)
Description copied from interface: TabPaneListener
Called when a tab has been removed from a tab pane's tab sequence.

Specified by:
tabsRemoved in interface TabPaneListener

cornerChanged

public void cornerChanged(TabPane tabPane,
                          Component previousCorner)
Description copied from interface: TabPaneListener
Called when a tab pane's corner component (the component in the free space next to the tabs) has changed.

Specified by:
cornerChanged in interface TabPaneListener