Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4477c6d2512df869fb7d79633625b283a6ed7d70 (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
45
/*******************************************************************************
 * Copyright (c) 2013, 2018 Red Hat, Inc.
 *
 * This program and the accompanying materials are made
 * available under the terms of the Eclipse Public License 2.0
 * which is available at https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *    Red Hat initial API and implementation
 *******************************************************************************/
package org.eclipse.linuxtools.internal.perf.launch;

import org.eclipse.osgi.util.NLS;

public class Messages extends NLS {
    private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.perf.launch.messages"; //$NON-NLS-1$
    public static String MsgProxyError;
    public static String PerfEventsTab_Add;
    public static String PerfEventsTab_Events;
    public static String PerfEventsTab_ForExample;
    public static String PerfEventsTab_ForExampleR1A8;
    public static String PerfEventsTab_HardwareBreakpoint;
    public static String PerfEventsTab_Note;
    public static String PerfEventsTab_RawRegisterEncoding;
    public static String PerfEventsTab_RemoveSelectedEvents;
    public static String PerfLaunchConfigDelegate_perf_not_found;
    public static String PerfLaunchConfigDelegate_analyzing;
    public static String PerfLaunchConfigDelegate_stat_title;
    public static String PerfOptionsTab_Browse;
    public static String PerfOptionsTab_File_DNE;
    public static String PerfOptionsTab_Kernel_Prompt;
    public static String PerfOptionsTab_Loc_DNE;
    public static String PerfOptionsTab_Options;
    public static String PerfOptionsTab_Requires_LTE;

    static {
        // initialize resource bundle
        NLS.initializeMessages(BUNDLE_NAME, Messages.class);
    }

    private Messages() {
    }
}

Back to the top