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

Side by Side Diff: editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/text/editor/DartEditorMessages.java

Issue 10703046: Issue 3753. Support for @deprecated annotation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Analyze for @deprecated all invocable elements Created 8 years, 5 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 public static String OverrideIndicatorManager_open_error_title; 95 public static String OverrideIndicatorManager_open_error_title;
96 public static String OverrideIndicatorManager_open_error_message; 96 public static String OverrideIndicatorManager_open_error_message;
97 public static String OverrideIndicatorManager_open_error_messageHasLogEntry; 97 public static String OverrideIndicatorManager_open_error_messageHasLogEntry;
98 public static String SemanticHighlighting_field; 98 public static String SemanticHighlighting_field;
99 public static String SemanticHighlighting_job; 99 public static String SemanticHighlighting_job;
100 public static String SemanticHighlighting_methodDeclaration; 100 public static String SemanticHighlighting_methodDeclaration;
101 public static String SemanticHighlighting_localVariableDeclaration; 101 public static String SemanticHighlighting_localVariableDeclaration;
102 public static String SemanticHighlighting_localVariable; 102 public static String SemanticHighlighting_localVariable;
103 public static String SemanticHighlighting_dynamicType; 103 public static String SemanticHighlighting_dynamicType;
104 public static String SemanticHighlighting_parameterVariable; 104 public static String SemanticHighlighting_parameterVariable;
105 public static String SemanticHighlighting_deprecatedMember; 105 public static String SemanticHighlighting_deprecatedElement;
106 public static String SemanticHighlighting_method; 106 public static String SemanticHighlighting_method;
107 public static String SemanticHighlighting_objectInitializer; 107 public static String SemanticHighlighting_objectInitializer;
108 public static String SemanticHighlighting_staticField; 108 public static String SemanticHighlighting_staticField;
109 public static String JavaEditor_markOccurrences_job_name; 109 public static String JavaEditor_markOccurrences_job_name;
110 public static String Editor_OpenPropertiesFile_error_keyNotFound; 110 public static String Editor_OpenPropertiesFile_error_keyNotFound;
111 public static String Editor_OpenPropertiesFile_error_fileNotFound_dialogMessag e; 111 public static String Editor_OpenPropertiesFile_error_fileNotFound_dialogMessag e;
112 public static String Editor_OpenPropertiesFile_error_openEditor_dialogMessage; 112 public static String Editor_OpenPropertiesFile_error_openEditor_dialogMessage;
113 public static String Editor_MoveLines_IllegalMove_status; 113 public static String Editor_MoveLines_IllegalMove_status;
114 static { 114 static {
115 NLS.initializeMessages(BUNDLE_NAME, DartEditorMessages.class); 115 NLS.initializeMessages(BUNDLE_NAME, DartEditorMessages.class);
116 } 116 }
117 public static String BasicEditorActionContributor_specific_content_assist_menu ; 117 public static String BasicEditorActionContributor_specific_content_assist_menu ;
118 118
119 /** 119 /**
120 * Returns the message bundle which contains constructed keys. 120 * Returns the message bundle which contains constructed keys.
121 * 121 *
122 * @return the message bundle 122 * @return the message bundle
123 */ 123 */
124 public static ResourceBundle getBundleForConstructedKeys() { 124 public static ResourceBundle getBundleForConstructedKeys() {
125 return fgBundleForConstructedKeys; 125 return fgBundleForConstructedKeys;
126 } 126 }
127 127
128 private DartEditorMessages() { 128 private DartEditorMessages() {
129 // Do not instantiate 129 // Do not instantiate
130 } 130 }
131 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698