org.chromium.debug.ui/src/org/chromium/debug/ui/actions/Messages.java
changeset 2 e4420d2515f1
child 355 8726e95bcbba
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.ui.actions;
       
     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.ui.actions.messages"; //$NON-NLS-1$
       
    15 
       
    16   public static String ExpressionEvaluator_CannotEvaluateWhenNotSuspended;
       
    17 
       
    18   public static String ExpressionEvaluator_ErrorEvaluatingExpression;
       
    19 
       
    20   public static String ExpressionEvaluator_ErrorInspectingObject;
       
    21 
       
    22   public static String ExpressionEvaluator_EvaluationThreadInterrupted;
       
    23 
       
    24   public static String ExpressionEvaluator_SocketError;
       
    25 
       
    26   public static String ExpressionEvaluator_UnableToEvaluateExpression;
       
    27 
       
    28   public static String JsBreakpointPropertiesRulerAction_ItemLabel;
       
    29   static {
       
    30     // initialize resource bundle
       
    31     NLS.initializeMessages(BUNDLE_NAME, Messages.class);
       
    32   }
       
    33 
       
    34   private Messages() {
       
    35   }
       
    36 }