Skip to main content
summaryrefslogblamecommitdiffstats
blob: 50b394e7f4281365f565e9a57b95b1fe7fba4fcd (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                                
                                                                                      











                                                                                 
                                                                                   








                                                                                 
/*******************************************************************************
 * Copyright (c) 2010 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.mi.service;

import org.eclipse.osgi.util.NLS;

/**
 * Preference strings.
 * @since 3.0
 */
class Messages extends NLS {
	public static String Breakpoint_attribute_problem;
	public static String Breakpoint_installation_failed;
	public static String MIExpressions_NotAvailableBecauseChildOfDynamicVarobj;
	
	static {
		// initialize resource bundle
		NLS.initializeMessages(Messages.class.getName(), Messages.class);
	}

	private Messages() {
	}
}

Back to the top