Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(949)

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IReorgQueries.java

Issue 9834028: Initial implementation of "Rename Local Variable" refactoring. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: LInked/inline mode for rename Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IReorgQueries.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IReorgQueries.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IReorgQueries.java
new file mode 100644
index 0000000000000000000000000000000000000000..a914833b2c95e22210b506247829e7dcb6c71bd2
--- /dev/null
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IReorgQueries.java
@@ -0,0 +1,26 @@
+package com.google.dart.tools.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);
+}

Powered by Google App Engine
This is Rietveld 408576698