org.chromium.debug.ui/src/org/chromium/debug/ui/Messages.java
author Eugene Ostroukhov <eugeneo@symbian.org>
Mon, 15 Mar 2010 17:36:40 -0700
changeset 267 a0f8d02facf1
parent 2 e4420d2515f1
permissions -rw-r--r--
Bug 2073 - On restart of WRT tools - its hard to know which project the open file is in

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