blob: b27c9bf7571f7f7076875ad8a35256a87e732ca2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 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.team.internal.ui.dialogs;
import org.eclipse.core.resources.IResource;
/**
* Input to a confirm prompt
*
* @see PromptingDialog
*/
public interface IPromptCondition {
/**
* Answers <code>true</code> if a prompt is required for this resource and
* false otherwise.
*/
public boolean needsPrompt(IResource resource);
/**
* Answers the message to include in the prompt.
*/
public String promptMessage(IResource resource);
}