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

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

Issue 8395010: fix for opening a file that does not belong to a library (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 2 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) 2011, the Dart project authors. 2 * Copyright (c) 2011, the Dart project authors.
3 * 3 *
4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not 4 * Licensed under the Eclipse Public License v1.0 (the "License"); you may not u se this file except
5 * use this file except in compliance with the License. You may obtain a copy of 5 * in compliance with the License. You may obtain a copy of the License at
6 * the License at 6 *
7 *
8 * http://www.eclipse.org/legal/epl-v10.html 7 * http://www.eclipse.org/legal/epl-v10.html
9 * 8 *
10 * Unless required by applicable law or agreed to in writing, software 9 * Unless required by applicable law or agreed to in writing, software distribut ed under the License
11 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 10 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY K IND, either express
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 11 * or implied. See the License for the specific language governing permissions a nd limitations under
13 * License for the specific language governing permissions and limitations under
14 * the License. 12 * the License.
15 */ 13 */
16 package com.google.dart.tools.ui.internal.handlers; 14 package com.google.dart.tools.ui.internal.handlers;
17 15
18 import org.eclipse.osgi.util.NLS; 16 import org.eclipse.osgi.util.NLS;
19 17
20 public class HandlerMessages extends NLS { 18 public class HandlerMessages extends NLS {
21 private static final String BUNDLE_NAME = "com.google.dart.tools.ui.internal.h andlers.HandlerMessages"; //$NON-NLS-1$ 19 private static final String BUNDLE_NAME = "com.google.dart.tools.ui.internal.h andlers.HandlerMessages"; //$NON-NLS-1$
22 static { 20 static {
23 NLS.initializeMessages(BUNDLE_NAME, HandlerMessages.class); 21 NLS.initializeMessages(BUNDLE_NAME, HandlerMessages.class);
24 } 22 }
25 23
26 public static String OpenFile_label; 24 public static String OpenFile_label;
27 public static String OpenFile_description; 25 public static String OpenFile_description;
28 public static String OpenFile_taskName; 26 public static String OpenFile_taskName;
27 public static String OpenFile_errorMessage;
28 public static String OpenFile_errorFileNotInLibrary;
29 29
30 } 30 }
OLDNEW
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.tools.ui/src/com/google/dart/tools/ui/internal/handlers/HandlerMessages.properties » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698