Skip to main content
summaryrefslogtreecommitdiffstats
blob: 66e71e344f54f71fb9f341bdfe36ff45dbe77977 (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) 2006, 2010 IBM Corporation 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:
 *     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