gdbtrace: Move plugins to the Trace Compass namespace
[deliverable/tracecompass.git] / org.eclipse.linuxtools.lttng2.control.ui / src / org / eclipse / linuxtools / internal / lttng2 / control / ui / relayd / Messages.java
CommitLineData
6fd3c6e9
MAL
1/**********************************************************************
2 * Copyright (c) 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 * Marc-Andre Laperle - Initial implementation
11 **********************************************************************/
12
13package org.eclipse.linuxtools.internal.lttng2.control.ui.relayd;
14
15import org.eclipse.osgi.util.NLS;
16
17/**
18 * Messages for the relayd connection.
19 *
20 * @author Marc-Andre Laperle
21 */
22public final class Messages extends NLS {
23 private static final String BUNDLE_NAME = "org.eclipse.linuxtools.internal.lttng2.control.ui.relayd.messages"; //$NON-NLS-1$
24
25 /**
26 * Error occurred establishing the connection.
27 */
28 public static String LttngRelaydConnectionManager_ConnectionError;
29
30 /**
31 * Error occurred attaching to the session.
32 */
33 public static String LttngRelaydConsumer_AttachSessionError;
34
35 /**
36 * Error occurred creating the viewer session.
37 */
38 public static String LttngRelaydConsumer_CreateViewerSessionError;
39
40 /**
41 * Error occurred connecting to the relayd.
42 */
43 public static String LttngRelaydConsumer_ErrorConnecting;
44
45 /**
46 * Error (generic) during live reading.
47 */
48 public static String LttngRelaydConsumer_ErrorLiveReading;
49
50 /**
51 * No metadata for this trace session.
52 */
53 public static String LttngRelaydConsumer_NoMetadata;
54
55 /**
56 * No streams for this trace session.
57 */
58 public static String LttngRelaydConsumer_NoStreams;
59
60 /**
61 * The session was not found by the relayd.
62 */
63 public static String LttngRelaydConsumer_SessionNotFound;
64 static {
65 // initialize resource bundle
66 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
67 }
68
69 private Messages() {
70 }
71}
This page took 0.028311 seconds and 5 git commands to generate.