org.chromium.debug.core/src/org/chromium/debug/core/model/Messages.java
changeset 2 e4420d2515f1
child 52 f577ea64429e
equal deleted inserted replaced
1:ef76fc2ac88c 2:e4420d2515f1
       
     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
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.debug.core.model;
       
     6 
       
     7 import org.eclipse.osgi.util.NLS;
       
     8 
       
     9 /**
       
    10  * NLS messages for the package.
       
    11  */
       
    12 public class Messages extends NLS {
       
    13   private static final String BUNDLE_NAME =
       
    14       "org.chromium.debug.core.model.messages"; //$NON-NLS-1$
       
    15 
       
    16   public static String ChromiumTabSelectionDialog_DialogTitle;
       
    17 
       
    18   public static String ChromiumTabSelectionDialog_IdColumnName;
       
    19 
       
    20   public static String ChromiumTabSelectionDialog_TableTitle;
       
    21 
       
    22   public static String ChromiumTabSelectionDialog_UrlColumnName;
       
    23 
       
    24   public static String ConnectionLoggerImpl_ReceivedFromChrome;
       
    25 
       
    26   public static String ConnectionLoggerImpl_SentToChrome;
       
    27 
       
    28   public static String DebugTargetImpl_BadResultWhileDisconnecting;
       
    29 
       
    30   public static String DebugTargetImpl_CannotStartMultipleDebuggers;
       
    31 
       
    32   public static String DebugTargetImpl_Caught;
       
    33 
       
    34   public static String DebugTargetImpl_FailedToStartSocketConnection;
       
    35 
       
    36   public static String DebugTargetImpl_LogExceptionFormat;
       
    37 
       
    38   public static String DebugTargetImpl_TargetName;
       
    39 
       
    40   public static String DebugTargetImpl_Uncaught;
       
    41 
       
    42   public static String JavascriptVmEmbedderFactory_TargetName0;
       
    43 
       
    44   public static String JavascriptVmEmbedderFactory_Terminated;
       
    45 
       
    46   public static String JavascriptVmEmbedderFactory_TerminatedWithReason;
       
    47 
       
    48   public static String JsLineBreakpoint_MessageMarkerFormat;
       
    49 
       
    50   public static String JsThread_ThreadLabelFormat;
       
    51 
       
    52   public static String JsThread_ThreadLabelRunning;
       
    53 
       
    54   public static String JsThread_ThreadLabelSuspended;
       
    55 
       
    56   public static String ResourceManager_UnnamedScriptName;
       
    57 
       
    58   public static String StackFrame_NameFormat;
       
    59 
       
    60   public static String StackFrame_UnknownScriptName;
       
    61 
       
    62   public static String Variable_NotScalarOrObjectFormat;
       
    63 
       
    64   public static String Variable_NullTypeForAVariable;
       
    65   static {
       
    66     // initialize resource bundle
       
    67     NLS.initializeMessages(BUNDLE_NAME, Messages.class);
       
    68   }
       
    69 
       
    70   private Messages() {
       
    71   }
       
    72 }