org.chromium.debug.ui/src/org/chromium/debug/ui/Messages.java
author Eugene Ostroukhov <eugeneo@symbian.org>
Mon, 15 Feb 2010 15:24:16 -0800
changeset 151 1b175992ea1c
parent 2 e4420d2515f1
permissions -rw-r--r--
Minor bugfixes

// 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() {
  }
}