Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: c30a63d2ee4ece2288bf49ba732dc533b2d1be79 (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
/*******************************************************************************
 * 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:
 *     Freescale Semiconductor - initial API and implementation 
 *     							 
 *******************************************************************************/

package org.eclipse.cdt.debug.internal.ui.views.memory;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {

	private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$

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

	public static String AddMemBlockDlg_enterAddrAndMemSpace;
	public static String AddMemBlockDlg_enterExpression;
	public static String AddMemBlockDlg_or;
	public static String AddMemBlockDlg_MonitorMemory;
	
	public static String AddMemBlocks_title;
	public static String AddMemBlocks_noMemoryBlock;
	public static String AddMemBlocks_failed;
	public static String AddMemBlocks_input_invalid;

}

Back to the top