* Constructs a child control finder widget using the given parent widget as its starting point.
*
* @param parentWidget the parent widget in which controls should be found.
*/
public ChildrenControlFinder(Widget parentWidget) {
this(parentWidget, new DefaultChildrenResolver(), new DefaultParentResolver());
}