06b5d266efedcedf9d586a83689f9c0d84613881
[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 /** Error title for error during workspace creation */
25 public static String Application_WorkspaceCreationError;
26 /** Error message if workspace root doesn't exist */
27 public static String Application_WorkspaceRootNotExistError;
28 /** Error message if workspace root is write protected */
29 public static String Application_WorkspaceRootPermissionError;
30 /** Error message if workspace is already in use */
31 public static String Application_WorkspaceInUseError;
32 /** Error message if workspace can't be saved during shutdown */
33 public static String Application_WorkspaceSavingError;
34 /** Error message for internal errors */
35 public static String Application_InternalError;
36
37 /** Malformed command */
38 public static String CliParser_MalformedCommand;
39 /** Unkown command */
40 public static String CliParser_UnknownCommand;
41
42 static {
43 // initialize resource bundle
44 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
45 }
46
47 private Messages() {
48 }
49 }
This page took 0.031563 seconds and 4 git commands to generate.