cdt/cdt_6_0_x/org.eclipse.cdt.dsf.ui/src/org/eclipse/cdt/dsf/debug/ui/viewmodel/variable/MessagesForVariablesVM.java
author ryall
Tue, 12 Jan 2010 07:49:28 -0600
changeset 129 723898599d35
parent 37 c2bce6dd59e7
permissions -rw-r--r--
Bug 299167, turn the Variable View's Address column into a Location column.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     1
/*******************************************************************************
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     2
 * Copyright (c) 2008 Wind River Systems and others.
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     3
 * All rights reserved. This program and the accompanying materials
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     4
 * are made available under the terms of the Eclipse Public License v1.0
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     5
 * which accompanies this distribution, and is available at
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     6
 * http://www.eclipse.org/legal/epl-v10.html
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     7
 * 
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     8
 * Contributors:
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
     9
 *     Wind River Systems - initial API and implementation
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    10
 *******************************************************************************/
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    11
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    12
package org.eclipse.cdt.dsf.debug.ui.viewmodel.variable;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    13
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    14
import org.eclipse.osgi.util.NLS;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    15
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    16
/**
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    17
 * @noinstantiate This class is not intended to be instantiated by clients.
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    18
 */
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    19
public class MessagesForVariablesVM extends NLS {
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    20
    private static final String BUNDLE_NAME = "org.eclipse.cdt.dsf.debug.ui.viewmodel.variable.messages"; //$NON-NLS-1$
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    21
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    22
    public static String VariableColumnPresentation_name;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    23
    public static String VariableColumnPresentation_type;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    24
    public static String VariableColumnPresentation_value;
129
723898599d35 Bug 299167, turn the Variable View's Address column into a Location column.
ryall
parents: 37
diff changeset
    25
    public static String VariableColumnPresentation_location;
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    26
129
723898599d35 Bug 299167, turn the Variable View's Address column into a Location column.
ryall
parents: 37
diff changeset
    27
    public static String VariableVMNode_Location_column__Error__text_format;
723898599d35 Bug 299167, turn the Variable View's Address column into a Location column.
ryall
parents: 37
diff changeset
    28
    public static String VariableVMNode_Location_column__text_format;
37
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    29
    public static String VariableVMNode_Description_column__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    30
    public static String VariableVMNode_Expression_column__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    31
    public static String VariableVMNode_Name_column__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    32
    public static String VariableVMNode_NoColumns_column__Error__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    33
    public static String VariableVMNode_NoColumns_column__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    34
    public static String VariableVMNode_NoColumns_column__No_string__text_format_with_type;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    35
    public static String VariableVMNode_NoColumns_column__text_format_with_type;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    36
    public static String VariableVMNode_NoColumns_column__No_string__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    37
    public static String VariableVMNode_Type_column__Error__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    38
    public static String VariableVMNode_Type_column__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    39
    public static String VariableVMNode_Value_column__text_format;
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    40
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    41
    static {
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    42
        // initialize resource bundle
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    43
        NLS.initializeMessages(BUNDLE_NAME, MessagesForVariablesVM.class);
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    44
    }
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    45
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    46
    private MessagesForVariablesVM() {
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    47
    }
c2bce6dd59e7 add cdt_6_0_x
cawthron
parents:
diff changeset
    48
}