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

Unified Diff: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java

Issue 473763003: Rename 'kindId' to 'kind' in 'edit.getRefactoring'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
« no previous file with comments | « no previous file | pkg/analysis_server/doc/api.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java
diff --git a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java
index 8dd44f4e969ba5e424254c63c02ac583bcf8564d..2a501a387e67e235430a46e491da1f5f6186792d 100644
--- a/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java
+++ b/editor/tools/plugins/com.google.dart.server/src/com/google/dart/server/AnalysisServer.java
@@ -274,7 +274,7 @@ public interface AnalysisServer {
*
* Get the changes required to perform a refactoring.
*
- * @param kindId The identifier of the kind of refactoring to be performed.
+ * @param kind The kind of refactoring to be performed.
* @param file The file containing the code involved in the refactoring.
* @param offset The offset of the region involved in the refactoring.
* @param length The length of the region involved in the refactoring.
@@ -286,7 +286,7 @@ public interface AnalysisServer {
* omitted if the refactoring does not require any options or if the values of those
* options are not known.
*/
- public void edit_getRefactoring(String kindId, String file, Integer offset, Integer length, Boolean validateOnly, Object options, GetRefactoringConsumer consumer);
+ public void edit_getRefactoring(String kind, String file, Integer offset, Integer length, Boolean validateOnly, Object options, GetRefactoringConsumer consumer);
/**
* Remove the given listener from the list of listeners that will receive notification when new
« no previous file with comments | « no previous file | pkg/analysis_server/doc/api.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698