blob: bff9e7cbf5d2b7ae47972537ae07990190a0aa9f [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.jdt.internal.corext.refactoring.reorg;
public interface IReorgQueries {
public static final int CONFIRM_DELETE_EMPTY_CUS= 2;
public static final int CONFIRM_DELETE_FOLDERS_CONTAINING_SOURCE_FOLDERS= 4;
public static final int CONFIRM_DELETE_GETTER_SETTER= 1;
public static final int CONFIRM_DELETE_LINKED_PARENT= 8;
public static final int CONFIRM_DELETE_REFERENCED_ARCHIVES= 3;
public static final int CONFIRM_OVERWRITING= 6;
public static final int CONFIRM_READ_ONLY_ELEMENTS= 5;
public static final int CONFIRM_SKIPPING= 7;
IConfirmQuery createSkipQuery(String queryTitle, int queryID);
IConfirmQuery createYesNoQuery(String queryTitle, boolean allowCancel, int queryID);
IConfirmQuery createYesYesToAllNoNoToAllQuery(String queryTitle, boolean allowCancel, int queryID);
}