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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/refactoring/descriptors/DescriptorMessages.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.core/src/com/google/dart/tools/core/internal/refactoring/descriptors/DescriptorMessages.java
diff --git a/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/refactoring/descriptors/DescriptorMessages.java b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/refactoring/descriptors/DescriptorMessages.java
new file mode 100644
index 0000000000000000000000000000000000000000..124bf538d5ec81fa9a9eacd9b2d51f7a18c2359b
--- /dev/null
+++ b/editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/refactoring/descriptors/DescriptorMessages.java
@@ -0,0 +1,72 @@
+package com.google.dart.tools.core.internal.refactoring.descriptors;
+
+import org.eclipse.osgi.util.NLS;
+
+public class DescriptorMessages extends NLS {
+
+ private static final String BUNDLE_NAME = DescriptorMessages.class.getName();
+
+ public static String DartRefactoringDescriptor_no_description;
+
+ public static String DartRefactoringDescriptor_no_resulting_descriptor;
+
+ public static String DartRefactoringDescriptor_not_available;
+
+ public static String MoveDescriptor_no_destination_set;
+
+ public static String MoveDescriptor_no_elements_set;
+
+ public static String MoveStaticMembersDescriptor_invalid_members;
+
+ public static String MoveStaticMembersDescriptor_no_members;
+
+ public static String MoveStaticMembersDescriptor_no_type;
+
+ public static String RenameDartElementDescriptor_accessor_constraint;
+
+ public static String RenameDartElementDescriptor_delegate_constraint;
+
+ public static String RenameDartElementDescriptor_deprecation_constraint;
+
+ public static String RenameDartElementDescriptor_hierarchical_constraint;
+
+ public static String RenameDartElementDescriptor_no_dart_element;
+
+ public static String RenameDartElementDescriptor_patterns_constraint;
+
+ public static String RenameDartElementDescriptor_patterns_qualified_constraint;
+
+ public static String RenameDartElementDescriptor_project_constraint;
+
+ public static String RenameDartElementDescriptor_qualified_constraint;
+
+ public static String RenameDartElementDescriptor_reference_constraint;
+
+ public static String RenameDartElementDescriptor_similar_constraint;
+
+ public static String RenameDartElementDescriptor_textual_constraint;
+
+ public static String RenameLocalVariableDescriptor_no_compilation_unit;
+
+ public static String RenameLocalVariableDescriptor_no_selection;
+
+ public static String RenameResourceDescriptor_no_new_name;
+
+ public static String RenameResourceDescriptor_no_resource;
+
+ public static String RenameResourceDescriptor_project_constraint;
+
+ public static String RenameResourceRefactoringContribution_error_cannot_access;
+
+ public static String UseSupertypeDescriptor_no_subtype;
+
+ public static String UseSupertypeDescriptor_no_supertype;
+
+ static {
+ // initialize resource bundle
+ NLS.initializeMessages(BUNDLE_NAME, DescriptorMessages.class);
+ }
+
+ private DescriptorMessages() {
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698