]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/IReorgQueries.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / core refactoring / org / eclipse / jdt / internal / corext / refactoring / reorg / IReorgQueries.java
diff --git a/case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/IReorgQueries.java b/case-study/jdt-after/core refactoring/org/eclipse/jdt/internal/corext/refactoring/reorg/IReorgQueries.java
new file mode 100644 (file)
index 0000000..bff9e7c
--- /dev/null
@@ -0,0 +1,36 @@
+/*******************************************************************************
+ * 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);
+}