Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5803cef1dbc186af30b75729ff15ad1f0645f4cd (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
/*******************************************************************************
 *  Copyright (c) 2006, 2009 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:
 *     Wind River Systems, Inc. - initial API and implementation
 *******************************************************************************/

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

import org.eclipse.osgi.util.NLS;

/**
 * @noinstantiate This class is not intended to be instantiated by clients.
 */
public class MessagesForDebugVM extends NLS {
    public static String ErrorLabelText__text_format;
    public static String ErrorLabelText_Error_message__text_page_break_delimiter;
    
    static {
        // initialize resource bundle
        NLS.initializeMessages(MessagesForDebugVM.class.getName(), MessagesForDebugVM.class);
    }

    private MessagesForDebugVM() {}
}

Back to the top