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

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/internal/corext/refactoring/RefactoringCoreMessages.java

Issue 10582003: Issue 1355. Support for call(). Tweaks for element locator and rename refactoring (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Check target range Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2012, the Dart project authors. 2 * Copyright (c) 2012, the Dart project authors.
3 * 3 *
4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u se this file except 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u se this file except
5 * in compliance with the License. You may obtain a copy of the License at 5 * in compliance with the License. You may obtain a copy of the License at
6 * 6 *
7 * http://www.eclipse.org/legal/epl-v10.html 7 * http://www.eclipse.org/legal/epl-v10.html
8 * 8 *
9 * Unless required by applicable law or agreed to in writing, software distribut ed under the License 9 * Unless required by applicable law or agreed to in writing, software distribut ed under the License
10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K IND, either express 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K IND, either express
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 // Rename type member 71 // Rename type member
72 public static String RenameProcessor_enclosing_type_member_already_defined; 72 public static String RenameProcessor_enclosing_type_member_already_defined;
73 // Rename type parameter 73 // Rename type parameter
74 public static String RenameTypeParameterProcessor_name; 74 public static String RenameTypeParameterProcessor_name;
75 public static String RenameTypeParameterProcessor_must_be_selected; 75 public static String RenameTypeParameterProcessor_must_be_selected;
76 public static String RenameTypeParameterProcessor_typeParameter_already_define d; 76 public static String RenameTypeParameterProcessor_typeParameter_already_define d;
77 // Rename type field 77 // Rename type field
78 public static String RenameFieldProcessor_name; 78 public static String RenameFieldProcessor_name;
79 // Rename type method 79 // Rename type method
80 public static String RenameMethodProcessor_name; 80 public static String RenameMethodProcessor_name;
81 public static String RenameMethodProcessor_isCall;
81 82
82 ////////////////////////////////////////////////////////////////////////////// ///////// 83 ////////////////////////////////////////////////////////////////////////////// /////////
83 // Extract local variable refactoring 84 // Extract local variable refactoring
84 ////////////////////////////////////////////////////////////////////////////// ///////// 85 ////////////////////////////////////////////////////////////////////////////// /////////
85 public static String ExtractLocalRefactoring_name; 86 public static String ExtractLocalRefactoring_name;
86 public static String ExtractLocalRefactoring_select_expression; 87 public static String ExtractLocalRefactoring_select_expression;
87 public static String ExtractLocalRefactoring_checking_preconditions; 88 public static String ExtractLocalRefactoring_checking_preconditions;
88 public static String ExtractLocalRefactoring_declare_local_variable; 89 public static String ExtractLocalRefactoring_declare_local_variable;
89 public static String ExtractLocalRefactoring_replace; 90 public static String ExtractLocalRefactoring_replace;
90 91
(...skipping 2302 matching lines...) Expand 10 before | Expand all | Expand 10 after
2393 public static String UseSupertypeWherePossibleRefactoring_name; 2394 public static String UseSupertypeWherePossibleRefactoring_name;
2394 2395
2395 static { 2396 static {
2396 NLS.initializeMessages(BUNDLE_NAME, RefactoringCoreMessages.class); 2397 NLS.initializeMessages(BUNDLE_NAME, RefactoringCoreMessages.class);
2397 } 2398 }
2398 2399
2399 private RefactoringCoreMessages() { 2400 private RefactoringCoreMessages() {
2400 // Do not instantiate 2401 // Do not instantiate
2401 } 2402 }
2402 } 2403 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698