lttng: Add Next/Previous TID event action in CFV
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / views / controlflow / PackageMessages.java
CommitLineData
e50f28e6
AM
1/*******************************************************************************
2 * Copyright (c) 2016 EfficiOS Inc. and others
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
10package org.eclipse.tracecompass.internal.analysis.os.linux.ui.views.controlflow;
11
12import org.eclipse.osgi.util.NLS;
13
14/**
15 * Message bundle for the package
16 *
17 * @noreference Messages class
18 */
19@SuppressWarnings("javadoc")
20public class PackageMessages extends NLS {
21
22 private static final String BUNDLE_NAME = PackageMessages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
23
24 public static String ControlFlowView_NextEventActionName;
25 public static String ControlFlowView_NextEventActionTooltip;
26 public static String ControlFlowView_NextEventJobName;
27
28 public static String ControlFlowView_PreviousEventActionName;
29 public static String ControlFlowView_PreviousEventActionTooltip;
30 public static String ControlFlowView_PreviousEventJobName;
31
32
33 static {
34 NLS.initializeMessages(BUNDLE_NAME, PackageMessages.class);
35 }
36
37 private PackageMessages() {
38 }
39}
This page took 0.025826 seconds and 5 git commands to generate.