Skip to main content
summaryrefslogtreecommitdiffstats
blob: cca27865052e6e6b750f4aca7eb2338b7bbddd8d (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
41
42
43
44
/*******************************************************************************
 * Copyright (c) 2008, 2010 Wind River Systems 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:
 *     Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.cdt.dsf.debug.ui.viewmodel.expression;

import org.eclipse.osgi.util.NLS;

/**
 * @noinstantiate This class is not intended to be instantiated by clients.
 */
public class MessagesForExpressionVM extends NLS {
    public static String ExpressionColumnPresentation_expression;
    public static String ExpressionColumnPresentation_name;
    public static String ExpressionColumnPresentation_type;
    public static String ExpressionColumnPresentation_value;
    public static String ExpressionColumnPresentation_address;
    public static String ExpressionColumnPresentation_description;

    public static String ExpressionManagerLayoutNode__invalidExpression_nameColumn_label;
    public static String ExpressionManagerLayoutNode__invalidExpression_valueColumn_label;

    public static String ExpressionManagerLayoutNode__newExpression_label;
    
    public static String DisabledExpressionVMNode_disabled_value;
    public static String DisabledExpressionVMNode_disabled_no_columns;

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

    private MessagesForExpressionVM() {
    }
}

Back to the top