Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 28a925fd9fe19c38eec4560cb26d0744fe30ac4f (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
/*******************************************************************************
 * Copyright (c) 2010, 2014 Freescale Semiconductor and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 * 
 * Contributors:
 *     Freescale Semiconductor - initial API and implementation
 *******************************************************************************/

package org.eclipse.cdt.dsf.gdb.internal.memory;

import org.eclipse.osgi.util.NLS;

/**
 * @noinstantiate This class is not intended to be instantiated by clients.
 */
public class Messages extends NLS {
    static {
        NLS.initializeMessages("org.eclipse.cdt.dsf.gdb.internal.memory.messages", Messages.class); //$NON-NLS-1$
    }

    public static String Err_ExceedsMaxAddress;
	public static String Err_MemoryServiceNotAvailable;
    public static String Err_MemoryReadFailed;
    public static String Err_MemoryWriteFailed;
    public static String Err_InvalidEncodedAddress;
}

Back to the top