| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 package org.chromium.debug.ui.launcher; | 5 package org.chromium.debug.ui.launcher; |
| 6 | 6 |
| 7 import org.eclipse.osgi.util.NLS; | 7 import org.eclipse.osgi.util.NLS; |
| 8 | 8 |
| 9 /** | 9 /** |
| 10 * NLS messages for the package. | 10 * NLS messages for the package. |
| 11 */ | 11 */ |
| 12 public class Messages extends NLS { | 12 public class Messages extends NLS { |
| 13 private static final String BUNDLE_NAME = | 13 private static final String BUNDLE_NAME = |
| 14 "org.chromium.debug.ui.launcher.messages"; //$NON-NLS-1$ | 14 "org.chromium.debug.ui.launcher.messages"; //$NON-NLS-1$ |
| 15 | 15 |
| 16 public static String ChromiumRemoteTab_BREAKPOINT_GROUP; | 16 public static String ChromiumRemoteTab_BREAKPOINT_GROUP; |
| 17 | 17 |
| 18 public static String ChromiumRemoteTab_CONNECTION_FROM_LOCALHOST_WARNING; | 18 public static String ChromiumRemoteTab_CONNECTION_FROM_LOCALHOST_WARNING; |
| 19 | 19 |
| 20 public static String ChromiumRemoteTab_CONNECTION_GROUP; | 20 public static String ChromiumRemoteTab_CONNECTION_GROUP; |
| 21 | 21 |
| 22 public static String ChromiumRemoteTab_ShowDebuggerNetworkCommunication; | 22 public static String ChromiumRemoteTab_ShowDebuggerNetworkCommunication; |
| 23 | 23 |
| 24 public static String ChromiumRemoteTab_PortLabel; | 24 public static String ChromiumRemoteTab_PortLabel; |
| 25 | 25 |
| 26 public static String ChromiumRemoteTab_HostLabel; | 26 public static String ChromiumRemoteTab_HostLabel; |
| 27 | 27 |
| 28 public static String ChromiumRemoteTab_RemoteTabName; | 28 public static String ChromiumRemoteTab_RemoteTabName; |
| 29 | 29 |
| 30 public static String ChromiumRemoteTab_INACCURATE_CONTAINER_WARNING; | 30 public static String ChromiumRemoteTab_AUTO_DETECT_CONTAINER_WARNING; |
| 31 | 31 |
| 32 public static String ChromiumRemoteTab_InvalidPortNumberError; | 32 public static String ChromiumRemoteTab_InvalidPortNumberError; |
| 33 | 33 |
| 34 public static String LaunchType_LogConsoleLaunchName; | 34 public static String LaunchType_LogConsoleLaunchName; |
| 35 static { | 35 static { |
| 36 // initialize resource bundle | 36 // initialize resource bundle |
| 37 NLS.initializeMessages(BUNDLE_NAME, Messages.class); | 37 NLS.initializeMessages(BUNDLE_NAME, Messages.class); |
| 38 } | 38 } |
| 39 | 39 |
| 40 private Messages() { | 40 private Messages() { |
| 41 } | 41 } |
| 42 } | 42 } |
| OLD | NEW |