30a2865ba7c9c6ffadf9bd2ef9d6b6e400110739
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.ui / src / org / eclipse / tracecompass / internal / lttng2 / ust / ui / analysis / debuginfo / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 EfficiOS Inc. and others
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10 package org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.debuginfo;
11
12 import org.eclipse.jdt.annotation.NonNullByDefault;
13 import org.eclipse.osgi.util.NLS;
14
15 /**
16 * Message bundle
17 *
18 * @noreference Messages class
19 */
20 @NonNullByDefault({})
21 @SuppressWarnings("javadoc")
22 public class Messages extends NLS {
23
24 private Messages() {}
25
26 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.debuginfo.messages"; //$NON-NLS-1$
27
28 static {
29 // initialize resource bundle
30 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
31 }
32
33 public static String PreferencePage_WindowDescription;
34
35 public static String PreferencePage_CheckboxLabel;
36 public static String PreferencePage_CheckboxTooltip;
37
38 public static String PreferencePage_ButtonBrowse;
39 public static String PreferencePage_ButtonClear;
40
41 public static String PreferencePage_BrowseDialogTitle;
42 public static String PreferencePage_ErrorDirectoryDoesNotExists;
43
44 }
This page took 0.033482 seconds and 5 git commands to generate.