statesystem: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.rcp.ui / src / org / eclipse / tracecompass / internal / tracing / rcp / ui / messages / Messages.java
CommitLineData
9c0ffa34 1/**********************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
9c0ffa34
BH
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 **********************************************************************/
9d26aebf 12package org.eclipse.tracecompass.internal.tracing.rcp.ui.messages;
9c0ffa34
BH
13
14import org.eclipse.osgi.util.NLS;
15
16/**
17 * Messages file for the tracing RCP.
18 *
19 * @author Bernd Hufmann
20 */
21public class Messages extends NLS {
9d26aebf 22 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.tracing.rcp.ui.messages.messages"; //$NON-NLS-1$
9c0ffa34 23
b42043af
BH
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;
b942e4f1
BH
30 /** Error message if workspace is already in use */
31 public static String Application_WorkspaceInUseError;
f2c0b466
BH
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
1d44bc98
BH
37 /** Version string */
38 public static String SplahScreen_VersionString;
39
76fccfb0
MK
40 /** Malformed command */
41 public static String CliParser_MalformedCommand;
42 /** Unkown command */
43 public static String CliParser_UnknownCommand;
9c0ffa34
BH
44
45 static {
46 // initialize resource bundle
47 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
48 }
49
50 private Messages() {
51 }
52}
This page took 0.079798 seconds and 5 git commands to generate.