org.apache.pivot.wtk
Class ContainerListener.Adapter

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

public static class ContainerListener.Adapter
extends Object
implements ContainerListener

Container listener adapter.


Nested Class Summary
 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ContainerListener
ContainerListener.Adapter
 
Constructor Summary
ContainerListener.Adapter()
           
 
Method Summary
 void componentInserted(Container container, int index)
          Called when a component has been inserted into a container's component sequence.
 void componentMoved(Container container, int from, int to)
          Called when a component has moved from one z-index to another within a container.
 void componentsRemoved(Container container, int index, Sequence<Component> removed)
          Called when components have been removed from a container's component sequence.
 void focusTraversalPolicyChanged(Container container, FocusTraversalPolicy previousFocusTraversalPolicy)
          Called when a container's focus traversal policy has changed.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ContainerListener.Adapter

public ContainerListener.Adapter()
Method Detail

componentInserted

public void componentInserted(Container container,
                              int index)
Description copied from interface: ContainerListener
Called when a component has been inserted into a container's component sequence.

Specified by:
componentInserted in interface ContainerListener

componentsRemoved

public void componentsRemoved(Container container,
                              int index,
                              Sequence<Component> removed)
Description copied from interface: ContainerListener
Called when components have been removed from a container's component sequence.

Specified by:
componentsRemoved in interface ContainerListener

componentMoved

public void componentMoved(Container container,
                           int from,
                           int to)
Description copied from interface: ContainerListener
Called when a component has moved from one z-index to another within a container.

Specified by:
componentMoved in interface ContainerListener

focusTraversalPolicyChanged

public void focusTraversalPolicyChanged(Container container,
                                        FocusTraversalPolicy previousFocusTraversalPolicy)
Description copied from interface: ContainerListener
Called when a container's focus traversal policy has changed.

Specified by:
focusTraversalPolicyChanged in interface ContainerListener