org.chromium.debug.core/src/org/chromium/debug/core/model/Messages.java
author Eugene Ostroukhov <eugeneo@symbian.org>
Mon, 07 Jun 2010 16:51:19 -0700
changeset 355 8726e95bcbba
parent 276 f2f4a1259de8
permissions -rw-r--r--
Initial commit of updated Chrome Java SDK

// 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.core.model;

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.core.model.messages"; //$NON-NLS-1$

  public static String ChromiumTabSelectionDialog_DialogTitle;

  public static String ChromiumTabSelectionDialog_IdColumnName;

  public static String ChromiumTabSelectionDialog_TableTitle;

  public static String ChromiumTabSelectionDialog_UrlColumnName;

  public static String ConnectionLoggerImpl_MessageSeparator;

  public static String ConnectionLoggerImpl_ReceivedFromChrome;

  public static String ConnectionLoggerImpl_SentToChrome;

  public static String DebugTargetImpl_BadResultWhileDisconnecting;

  public static String DebugTargetImpl_CannotStartMultipleDebuggers;

  public static String DebugTargetImpl_Caught;

  public static String DebugTargetImpl_FailedToStartSocketConnection;

  public static String DebugTargetImpl_LogExceptionFormat;

  public static String DebugTargetImpl_TargetName;

  public static String DebugTargetImpl_Uncaught;

  public static String DebugTargetImpl_Unknown;

  public static String JavascriptVmEmbedderFactory_TargetName0;

  public static String JavascriptVmEmbedderFactory_Terminated;

  public static String JavascriptVmEmbedderFactory_TerminatedWithReason;

  public static String JsLineBreakpoint_MessageMarkerFormat;

  public static String JsThread_ThreadLabelFormat;

  public static String JsThread_ThreadLabelRunning;

  public static String JsThread_ThreadLabelSuspended;

  public static String JsThread_ThreadLabelSuspendedExceptionFormat;

  public static String MockUpResourceWriter_NOT_A_JAVASCRIPT;

  public static String MockUpResourceWriter_SCRIPT_WITHOUT_TEXT;

  public static String MockUpResourceWriter_SCRIPTS_OVERLAPPED;

  public static String ResourceManager_UnnamedScriptName;

  public static String StackFrame_NameFormat;

  public static String StackFrame_UnknownScriptName;

  public static String Variable_NotScalarOrObjectFormat;

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

  private Messages() {
  }
}