org.chromium.debug.ui/src/org/chromium/debug/ui/Messages.java
changeset 2 e4420d2515f1
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;
       
     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.messages"; //$NON-NLS-1$
       
    15 
       
    16   public static String ChromiumDebugUIPlugin_Error;
       
    17 
       
    18   public static String ChromiumDebugUIPlugin_Info;
       
    19 
       
    20   public static String ChromiumDebugUIPlugin_Warning;
       
    21 
       
    22   public static String JsWatchExpressionDelegate_BadStackStructureWhileEvaluating;
       
    23 
       
    24   public static String JsWatchExpressionDelegate_ErrorEvaluatingExpression;
       
    25   static {
       
    26     // initialize resource bundle
       
    27     NLS.initializeMessages(BUNDLE_NAME, Messages.class);
       
    28   }
       
    29 
       
    30   private Messages() {
       
    31   }
       
    32 }