org.apache.pivot.wtk
Class SplitPaneListener.Adapter

java.lang.Object
  extended by org.apache.pivot.wtk.SplitPaneListener.Adapter
All Implemented Interfaces:
SplitPaneListener
Enclosing interface:
SplitPaneListener

public static class SplitPaneListener.Adapter
extends Object
implements SplitPaneListener

Split pane listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.SplitPaneListener
SplitPaneListener.Adapter
 
Constructor Summary
SplitPaneListener.Adapter()
           
 
Method Summary
 void bottomRightChanged(SplitPane splitPane, Component previousBottomRight)
          Called when a split pane's bottom right component has changed.
 void lockedChanged(SplitPane splitPane)
          Called when a split pane's locked flag has changed.
 void orientationChanged(SplitPane splitPane)
          Called when a split pane's orientation has changed.
 void primaryRegionChanged(SplitPane splitPane)
          Called when a split pane's primary region has changed.
 void resizeModeChanged(SplitPane splitPane, SplitPane.ResizeMode previousResizeMode)
          Called when a split pane's split location has changed.
 void splitRatioChanged(SplitPane splitPane, float previousSplitRatio)
          Called when a split pane's split location has changed.
 void topLeftChanged(SplitPane splitPane, Component previousTopLeft)
          Called when a split pane's top left component has changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SplitPaneListener.Adapter

public SplitPaneListener.Adapter()
Method Detail

topLeftChanged

public void topLeftChanged(SplitPane splitPane,
                           Component previousTopLeft)
Description copied from interface: SplitPaneListener
Called when a split pane's top left component has changed.

Specified by:
topLeftChanged in interface SplitPaneListener
Parameters:
splitPane - The source of the event.
previousTopLeft - The previous component. The new component can be found inside the splitPane.

bottomRightChanged

public void bottomRightChanged(SplitPane splitPane,
                               Component previousBottomRight)
Description copied from interface: SplitPaneListener
Called when a split pane's bottom right component has changed.

Specified by:
bottomRightChanged in interface SplitPaneListener
Parameters:
splitPane - The source of the event.
previousBottomRight - The previous component. The new component can be found inside the splitPane.

orientationChanged

public void orientationChanged(SplitPane splitPane)
Description copied from interface: SplitPaneListener
Called when a split pane's orientation has changed.

Specified by:
orientationChanged in interface SplitPaneListener
Parameters:
splitPane - The source of the event.

primaryRegionChanged

public void primaryRegionChanged(SplitPane splitPane)
Description copied from interface: SplitPaneListener
Called when a split pane's primary region has changed.

Specified by:
primaryRegionChanged in interface SplitPaneListener
Parameters:
splitPane - The source of the event.

splitRatioChanged

public void splitRatioChanged(SplitPane splitPane,
                              float previousSplitRatio)
Description copied from interface: SplitPaneListener
Called when a split pane's split location has changed.

Specified by:
splitRatioChanged in interface SplitPaneListener
Parameters:
splitPane - The source of the event.
previousSplitRatio - The previous setting of the splitRatio.

lockedChanged

public void lockedChanged(SplitPane splitPane)
Description copied from interface: SplitPaneListener
Called when a split pane's locked flag has changed.

Specified by:
lockedChanged in interface SplitPaneListener
Parameters:
splitPane - The source of the event.

resizeModeChanged

public void resizeModeChanged(SplitPane splitPane,
                              SplitPane.ResizeMode previousResizeMode)
Description copied from interface: SplitPaneListener
Called when a split pane's split location has changed.

Specified by:
resizeModeChanged in interface SplitPaneListener
Parameters:
splitPane - The source of the event.
previousResizeMode - The previous setting of the resizeMode.