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

Unified Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IConfirmQuery.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/IConfirmQuery.java
diff --git a/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IConfirmQuery.java b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IConfirmQuery.java
new file mode 100644
index 0000000000000000000000000000000000000000..c18abef7d9fae8ae572182b2f62503fc5c5f22f4
--- /dev/null
+++ b/editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/reorg/IConfirmQuery.java
@@ -0,0 +1,9 @@
+package com.google.dart.tools.internal.corext.refactoring.reorg;
+
+import org.eclipse.core.runtime.OperationCanceledException;
+
+public interface IConfirmQuery {
+ public boolean confirm(String question) throws OperationCanceledException;
+
+ public boolean confirm(String question, Object[] elements) throws OperationCanceledException;
+}

Powered by Google App Engine
This is Rietveld 408576698