linux.ui: Add Threads Presentation to View Menu of the CFV
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.os.linux.ui / src / org / eclipse / tracecompass / internal / analysis / os / linux / ui / Messages.java
CommitLineData
94cce698 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2015 Ericsson
94cce698
AM
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 * Patrick Tassé - Initial API and implementation
bf415887 10 * Mahdi Zolnouri - Add new String for ControlFlowView
94cce698
AM
11 *******************************************************************************/
12
e363eae1 13package org.eclipse.tracecompass.internal.analysis.os.linux.ui;
dedc7dec
PT
14
15import org.eclipse.osgi.util.NLS;
16
17@SuppressWarnings("javadoc")
18public class Messages extends NLS {
e363eae1 19 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.ui.messages"; //$NON-NLS-1$
dedc7dec
PT
20
21 public static String ControlFlowView_birthTimeColumn;
bf415887
MZ
22 public static String ControlFlowView_threadPresentation;
23
dedc7dec
PT
24 public static String ControlFlowView_tidColumn;
25 public static String ControlFlowView_ptidColumn;
26 public static String ControlFlowView_processColumn;
27 public static String ControlFlowView_traceColumn;
28
29 public static String ControlFlowView_stateTypeName;
af10fe06 30 public static String ControlFlowView_multipleStates;
dedc7dec
PT
31 public static String ControlFlowView_nextProcessActionNameText;
32 public static String ControlFlowView_nextProcessActionToolTipText;
33 public static String ControlFlowView_previousProcessActionNameText;
34 public static String ControlFlowView_previousProcessActionToolTipText;
03ab8eeb
PT
35 public static String ControlFlowView_followCPUBwdText;
36 public static String ControlFlowView_followCPUFwdText;
b97d61f0
CM
37 public static String ControlFlowView_checkActiveLabel;
38 public static String ControlFlowView_checkActiveToolTip;
39 public static String ControlFlowView_uncheckInactiveLabel;
40 public static String ControlFlowView_uncheckInactiveToolTip;
dedc7dec
PT
41 public static String ControlFlowView_attributeSyscallName;
42 public static String ControlFlowView_attributeCpuName;
bf415887
MZ
43 public static String ControlFlowView_flatViewLabel;
44 public static String ControlFlowView_flatViewToolTip;
45 public static String ControlFlowView_hierarchicalViewLabel;
46 public static String ControlFlowView_hierarchicalViewToolTip;
dedc7dec
PT
47
48 public static String ResourcesView_stateTypeName;
af10fe06 49 public static String ResourcesView_multipleStates;
dedc7dec
PT
50 public static String ResourcesView_nextResourceActionNameText;
51 public static String ResourcesView_nextResourceActionToolTipText;
52 public static String ResourcesView_previousResourceActionNameText;
53 public static String ResourcesView_previousResourceActionToolTipText;
54 public static String ResourcesView_attributeCpuName;
55 public static String ResourcesView_attributeIrqName;
56 public static String ResourcesView_attributeSoftIrqName;
57 public static String ResourcesView_attributeHoverTime;
58 public static String ResourcesView_attributeTidName;
59 public static String ResourcesView_attributeProcessName;
60 public static String ResourcesView_attributeSyscallName;
61
62 static {
63 // initialize resource bundle
64 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
65 }
66
67 private Messages() {
68 }
69}
This page took 0.100549 seconds and 5 git commands to generate.