Skip to main content
summaryrefslogtreecommitdiffstats
blob: 489e2e545217c1a00f74e8bbd7b5c22b075ebc8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*******************************************************************************
 * Copyright (c) 2007 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.equinox.prov.ui.operations;

import org.eclipse.swt.widgets.Shell;

/**
 * Interface for confirming provisioning operations
 * 
 * @since 3.4
 */

public interface IOperationConfirmer {
	/**
	 * Return a boolean indicating whether the operation should continue.
	 * 
	 * @param op
	 *            the operation to be performed.
	 * @param shell
	 *            the shell that should be used for prompting
	 * @return a boolean indicating whether the operation should be performed.
	 */
	public boolean continuePerformingOperation(ProvisioningOperation op, Shell shell);
}

Back to the top