lttng: Add Trace Viewer RCP application
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tracing.rcp.ui / src / org / eclipse / linuxtools / internal / tracing / rcp / ui / messages / Messages.java
1 /**********************************************************************
2 * Copyright (c) 2013 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 * Bernd Hufmann - Initial API and implementation
11 **********************************************************************/
12 package org.eclipse.linuxtools.internal.tracing.rcp.ui.messages;
13
14 import org.eclipse.osgi.util.NLS;
15
16 /**
17 * Messages file for the tracing RCP.
18 *
19 * @author Bernd Hufmann
20 */
21 public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.tracing.rcp.ui.messages.messages"; //$NON-NLS-1$
23
24 /** The name of the default tracing project. */
25 public static String ApplicationWorkbenchWindowAdvisor_DefaultProjectName;
26 /** The RCP title. */
27 public static String ApplicationWorkbenchWindowAdvisor_WindowTitle;
28
29 static {
30 // initialize resource bundle
31 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
32 }
33
34 private Messages() {
35 }
36 }
This page took 0.035632 seconds and 5 git commands to generate.