tmf.ui: Introduce TmfFileDialogFactory
[deliverable/tracecompass.git] / gdbtrace / org.eclipse.tracecompass.gdbtrace.ui / src / org / eclipse / tracecompass / internal / gdbtrace / ui / views / project / dialogs / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2013, 2014 Ericsson
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 * Contributors:
10 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.gdbtrace.ui.views.project.dialogs;
14
15 import org.eclipse.osgi.util.NLS;
16
17 @SuppressWarnings("javadoc")
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.gdbtrace.ui.views.project.dialogs.messages"; //$NON-NLS-1$
20 public static String SelectTraceExecutableDialog_BinaryError;
21 public static String SelectTraceExecutableDialog_Browse;
22 public static String SelectTraceExecutableDialog_ExecutableName;
23 public static String SelectTraceExecutableDialog_ExecutablePrompt;
24 public static String SelectTraceExecutableDialog_Message;
25 public static String SelectTraceExecutableDialog_Title;
26
27 static {
28 // initialize resource bundle
29 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
30 }
31
32 private Messages() {
33 }
34 }
This page took 0.033522 seconds and 5 git commands to generate.