/******************************************************************************* * Copyright (c) 2008-2009 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 * Ralf Ebert www.ralfebert.de - (bug 271630) SWTBot Improved RCP / Workbench support *******************************************************************************/ package org.eclipse.swtbot.eclipse.finder.waits; import java.util.List; import org.eclipse.swtbot.eclipse.finder.finders.WorkbenchContentsFinder; import org.eclipse.swtbot.swt.finder.waits.WaitForObjectCondition; import org.eclipse.ui.IViewReference; import org.hamcrest.Matcher; /** * Waits until a view part that matches the specified matcher appears. * * @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com> * @author Ralf Ebert www.ralfebert.de (bug 271630) * @version $Id$ */ public class WaitForView extends WaitForObjectCondition<IViewReference> { /** * Creates a condition that waits until the matcher is true. * * @param matcher the matcher */ WaitForView(Matcher<IViewReference> matcher) { super(matcher); } public String getFailureMessage() { return "Could not find view matching: " + matcher; } @Override protected List<IViewReference> findMatches() { return new WorkbenchContentsFinder().findViews(matcher); } }