Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5540996ef85f13ed03d72caa0ffb26b8fbc29eaf (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
38
39
40
/*******************************************************************************
 *  Copyright (c) 2006, 2010 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *     Wind River Systems, Inc. - extended implementation
 *******************************************************************************/

package org.eclipse.cdt.dsf.debug.internal.ui.viewmodel.detailsupport;

import org.eclipse.osgi.util.NLS;

public class MessagesForDetailPane extends NLS {
	public static String NumberFormatDetailPane_Name;
	public static String NumberFormatDetailPane_Description;
	public static String DetailPane_Copy;
	public static String DetailPane_LabelPattern;
	public static String DetailPane_Select_All;
	public static String PaneWordWrapAction_WrapText;
	public static String PaneMaxLengthAction_MaxLength;
	public static String PaneMaxLengthDialog_ConfigureDetails;
	public static String PaneMaxLengthDialog_MaxCharactersToDisplay;
	public static String PaneMaxLengthDialog_IntegerCannotBeNegative;
	public static String PaneMaxLengthDialog_EnterAnInteger;

	static {
		// initialize resource bundle
		NLS.initializeMessages(MessagesForDetailPane.class.getName(), MessagesForDetailPane.class);
	}

	private MessagesForDetailPane() {
	}
}

Back to the top