Package org.fest.swing.hierarchy
Interface ChildrenFinderStrategy
- All Known Implementing Classes:
JDesktopPaneChildrenFinder,JMenuChildrenFinder,WindowChildrenFinder
interface ChildrenFinderStrategy
Understands how to find children components in a
Container.-
Method Summary
Modifier and TypeMethodDescriptionReturns the non-explicit children of a container.
-
Method Details
-
nonExplicitChildrenOf
Returns the non-explicit children of a container. Non-explicit children are components considered to be children of the given container but cannot be obtained by calling.Container.getComponents()Note: Implementations of this method should not use the event dispatch thread (EDT.) Clients are responsible for invoking this method in the EDT.
- Parameters:
c- the container whose children we are looking for.- Returns:
- a collection containing the non-explicit children found.
-