java.awt

Class ContainerOrderFocusTraversalPolicy

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    DefaultFocusTraversalPolicy
    public class ContainerOrderFocusTraversalPolicy extends FocusTraversalPolicy implements java.io.Serializable
    A FocusTraversalPolicy that determines traversal order based on the order of child Components in a Container. From a particular focus cycle root, the policy makes a pre-order traversal of the Component hierarchy, and traverses a Container's children according to the ordering of the array returned by Container.getComponents(). Portions of the hierarchy that are not visible and displayable will not be searched.

    By default, ContainerOrderFocusTraversalPolicy implicitly transfers focus down-cycle. That is, during normal forward focus traversal, the Component traversed after a focus cycle root will be the focus-cycle-root's default Component to focus. This behavior can be disabled using the setImplicitDownCycleTraversal method.

    By default, methods of this class with return a Component only if it is visible, displayable, enabled, and focusable. Subclasses can modify this behavior by overriding the accept method.

    This policy takes into account focus traversal policy providers. When searching for first/last/next/previous Component, if a focus traversal policy provider is encountered, its focus traversal policy is used to perform the search operation.

    Since:
    1.4
    See Also:
    Container.getComponents(), Serialized Form
    • Constructors 
      Constructor and Description
      Ordinary member indicator ContainerOrderFocusTraversalPolicy Reveal DetailHide Detail
       
    • Methods 
      Modifier and Type Method and Description
      Overridden member indicator getComponentAfter Reveal DetailHide Detail
      Returns the Component that should receive the focus after aComponent.
      Overridden member indicator getComponentBefore Reveal DetailHide Detail
      Returns the Component that should receive the focus before aComponent.
      Overridden member indicator getDefaultComponent Reveal DetailHide Detail
      Returns the default Component to focus.
      Overridden member indicator getFirstComponent Reveal DetailHide Detail
      Returns the first Component in the traversal cycle.
      Ordinary member indicator getImplicitDownCycleTraversal Reveal DetailHide Detail
      Returns whether this ContainerOrderFocusTraversalPolicy transfers focus down-cycle implicitly.
      Inherited member indicator getInitialComponent Reveal DetailHide Detail
      Returns the Component that should receive the focus when a Window is made visible for the first time.
      Overridden member indicator getLastComponent Reveal DetailHide Detail
      Returns the last Component in the traversal cycle.
      Ordinary member indicator setImplicitDownCycleTraversal Reveal DetailHide Detail
      Sets whether this ContainerOrderFocusTraversalPolicy transfers focus down-cycle implicitly.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
This document was created by Dulcet from the OpenJDK sources. Copyright © 1993, 2012 Oracle and/or its affiliates. All rights reserved.

SourceForge