blob: d0f9300dfa4987f793c0769fadb758a9bf54bea0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Ketan Padegaonkar and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Ketan Padegaonkar - initial API and implementation
*******************************************************************************/
package org.eclipse.swtbot.swt.finder.waits;
import java.util.List;
import org.eclipse.swt.widgets.Widget;
import org.hamcrest.Matcher;
/**
* @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com>
* @see Conditions
* @version $Id$
* @since 2.0
*/
class WaitForWidgetInParent<T extends Widget> extends WaitForObjectCondition<T> {
private final Widget parent;
WaitForWidgetInParent(Matcher<T> matcher, Widget parent) {
super(matcher);
this.parent = parent;
}
public String getFailureMessage() {
return "Could not find widget matching: " + matcher; //$NON-NLS-1$
}
@Override
protected List<T> findMatches() {
return bot.getFinder().findControls(parent, matcher, true);
}
}