blob: 3c311991a754afb7e8a8568d18b2ab476918db0c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 SAP AG, Walldorf.
* 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:
* SAP AG - initial API and implementation
*******************************************************************************/
package org.eclipse.platform.discovery.testutils.utils.abbot;
import org.eclipse.swt.widgets.Display;
public interface IAbbotTestUiStarter
{
/**
* Closes the "host" dialog
* @param display the display in which the action would be executed
* @throws NullPointerException when display is null
* @throws IllegalStateException when the host dialog has not been initialized
*/
public void closeEnclosingDialog(Display display);
}