lttng rcp: add tracing rcp "file->open" buttons
[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 /** Error title for error during workspace creation */
29 public static String Application_WorkspaceCreationError;
30 /** Error message if workspace root doesn't exist */
31 public static String Application_WorkspaceRootNotExistError;
32 /** Error message if workspace root is write protected */
33 public static String Application_WorkspaceRootPermissionError;
34 /** Malformed command */
35 public static String CliParser_MalformedCommand;
36 /** Unkown command */
37 public static String CliParser_UnknownCommand;
38 /** Select trace type title */
39 public static String OpenDirHandler_SelectTraceType;
40 /** Select trace file */
41 public static String OpenFileHandler_SelectTraceFile;
42
43 static {
44 // initialize resource bundle
45 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
46 }
47
48 private Messages() {
49 }
50 }
This page took 0.035319 seconds and 5 git commands to generate.