blob: 6ab63cd684146ec99830ac2a4c7aae47e8c5a79f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2009 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.tasks.ui.wizards;
import org.eclipse.jface.dialogs.IDialogPage;
/**
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
* @author Steffen Pingel
* @since 3.0
*/
public interface ITaskSearchPage extends IDialogPage {
public abstract void setContainer(ITaskSearchPageContainer container);
public abstract boolean performSearch();
}