Top Description Methods
com.sun.javafx.scene.traversal

public Interface Algorithm

Known Direct Implementers
com.sun.javafx.scene.traversal.ContainerTabOrder, com.sun.javafx.scene.traversal.Hueristic2D, com.sun.javafx.scene.traversal.WeightedClosestCorner
Imports
javafx.scene.Node

An algorithm to be used in a traversal engine. Note that in order to avoid cycles or dead-ends in traversal the algorithms should respect the following order: * for NEXT: node -> node's subtree -> node siblings (first sibling then it's subtree) -> NEXT_IN_LINE for node's parent * for NEXT_IN_LINE: node -> node siblings (first sibling then it's subtree) -> NEXT_IN_LINE for node's parent * for PREVIOUS: node -> node siblings ( ! first subtree then the node itself ! ) -> PREVIOUS for node's parent Basically it ensures that next direction will traverse the same nodes as previous, in the opposite order.

Method Summary

Modifier and TypeMethod and Description
public Node
select(Node owner, Direction dir, TraversalContext context)

Traverse from owner, in direction dir.

public Node

Returns:

the first node
selectFirst
(TraversalContext
the context that contains the root
context
)

Return the first traversable node for the specified context (root).

public Node

Returns:

the last node
selectLast
(TraversalContext
the context that contains the root
context
)

Return the last traversable node for the specified context (root).

Method Detail

selectback to summary
public Node select(Node owner, Direction dir, TraversalContext context)

Traverse from owner, in direction dir. Return a the new target Node or null if no suitable target is found. Typically, the implementation of override algorithm handles only parent's direct children and looks like this: 1) Find the nearest parent of the "owner" that is handled by this algorithm (i.e. it's a direct child of the root). 2) select the next node within this direct child using the context.selectInSubtree() and return it 2a) if no such node exists, move to the next direct child in the direction (this is where the different order of direct children is defined) or if direct children are not traversable, the select the first node in the next direct child

selectFirstback to summary
public Node selectFirst(TraversalContext context)

Return the first traversable node for the specified context (root).

Parameters
context:TraversalContext

the context that contains the root

Returns:Node

the first node

selectLastback to summary
public Node selectLast(TraversalContext context)

Return the last traversable node for the specified context (root).

Parameters
context:TraversalContext

the context that contains the root

Returns:Node

the last node