/******************************************************************************* * Copyright (c) 2009, 2011 Ericsson and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Ericsson - initial API and implementation * Jens Elmenthaler (Verigy) - Added Full GDB pretty-printing support (bug 302121) *******************************************************************************/ package org.eclipse.cdt.dsf.gdb.internal.ui.preferences; import org.eclipse.osgi.util.NLS; /** * Preference strings. */ class MessagesForPreferences extends NLS { public static String GdbDebugPreferencePage_description; public static String GdbDebugPreferencePage_traces_label; public static String GdbDebugPreferencePage_enableTraces_label; /** @since 2.2 */ public static String GdbDebugPreferencePage_maxGdbTraces_label; public static String GdbDebugPreferencePage_termination_label; public static String GdbDebugPreferencePage_autoTerminateGdb_label; public static String GdbDebugPreferencePage_hover_label; public static String GdbDebugPreferencePage_useInspectorHover_label; /** @since 2.2 */ public static String GdbDebugPreferencePage_prettyPrinting_label; /** @since 2.2 */ public static String GdbDebugPreferencePage_enablePrettyPrinting_label1; /** @since 2.2 */ public static String GdbDebugPreferencePage_enablePrettyPrinting_label2; /** @since 2.2 */ public static String GdbDebugPreferencePage_initialChildCountLimitForCollections_label; /** @since 2.2 */ public static String GdbDebugPreferencePage_defaults_label; static { // initialize resource bundle NLS.initializeMessages(MessagesForPreferences.class.getName(), MessagesForPreferences.class); } private MessagesForPreferences() { } }