Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 18e89578b3eb1aa292ab24566f5867b4c96b4ea1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2010 Marc-Andre Laperle 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:
 * Marc-Andre Laperle - Initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.gdb.internal.ui.console;

import org.eclipse.osgi.util.NLS;

/**
 * @since 2.1
 */
public class ConsoleMessages extends NLS {
	private static final String BUNDLE_NAME= "org.eclipse.cdt.dsf.gdb.internal.ui.console.ConsoleMessages"; //$NON-NLS-1$
	
	public static String ConsoleMessages_trace_console_name;
	public static String ConsoleMessages_trace_console_terminated;

	public static String ConsoleMessages_save_action_tooltip;
	public static String ConsoleMessages_save_confirm_overwrite_title;
	public static String ConsoleMessages_save_confirm_overwrite_desc;
	public static String ConsoleMessages_save_info_io_error_title;
	public static String ConsoleMessages_save_info_io_error_desc;
	
	static {
		// initialize resource bundle
		NLS.initializeMessages(BUNDLE_NAME, ConsoleMessages.class);
	}
	
	private ConsoleMessages() {
	}
}

Back to the top