org.chromium.debug.ui/src/org/chromium/debug/ui/Messages.java
author Eugene Ostroukhov <eugeneo@symbian.org>
Thu, 11 Mar 2010 18:00:58 -0800
changeset 261 a691cdb6c78a
parent 2 e4420d2515f1
permissions -rw-r--r--
Bugs 2170 and 2046

// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.debug.ui;

import org.eclipse.osgi.util.NLS;

/**
 * NLS messages for the package.
 */
public class Messages extends NLS {
  private static final String BUNDLE_NAME =
      "org.chromium.debug.ui.messages"; //$NON-NLS-1$

  public static String ChromiumDebugUIPlugin_Error;

  public static String ChromiumDebugUIPlugin_Info;

  public static String ChromiumDebugUIPlugin_Warning;

  public static String JsWatchExpressionDelegate_BadStackStructureWhileEvaluating;

  public static String JsWatchExpressionDelegate_ErrorEvaluatingExpression;
  static {
    // initialize resource bundle
    NLS.initializeMessages(BUNDLE_NAME, Messages.class);
  }

  private Messages() {
  }
}