blob: 3b20bcf0c5baa4d8f216df52002bdbe28aceec6f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ltk.core.refactoring;
import org.eclipse.core.runtime.IAdaptable;
/**
* A factory to create <code>IValidationCheckResultQuery</code> objects.
* The LTK user interface plug-in provides a special factory for dialog
* based queries.
* <p>
* The interface may be implemented by clients.
* </p>
*
* @since 3.1
*/
public interface IValidationCheckResultQueryFactory {
/**
* Creates a new query.
*
* @param context the factory adapts the context to a
* <code>org.eclipse.swt.widgets.Shell</code> that is to be used to parent
* any dialogs with the user; use <code>null</code> if there is no UI context
*
* @return the new query
*/
public IValidationCheckResultQuery create(IAdaptable context);
}