analysis: Add root trace entries to Control Flow view
[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;
dedc7dec
PT
27
28 public static String ControlFlowView_stateTypeName;
af10fe06 29 public static String ControlFlowView_multipleStates;
dedc7dec
PT
30 public static String ControlFlowView_nextProcessActionNameText;
31 public static String ControlFlowView_nextProcessActionToolTipText;
32 public static String ControlFlowView_previousProcessActionNameText;
33 public static String ControlFlowView_previousProcessActionToolTipText;
03ab8eeb
PT
34 public static String ControlFlowView_followCPUBwdText;
35 public static String ControlFlowView_followCPUFwdText;
b97d61f0
CM
36 public static String ControlFlowView_checkActiveLabel;
37 public static String ControlFlowView_checkActiveToolTip;
38 public static String ControlFlowView_uncheckInactiveLabel;
39 public static String ControlFlowView_uncheckInactiveToolTip;
dedc7dec
PT
40 public static String ControlFlowView_attributeSyscallName;
41 public static String ControlFlowView_attributeCpuName;
bf415887
MZ
42 public static String ControlFlowView_flatViewLabel;
43 public static String ControlFlowView_flatViewToolTip;
44 public static String ControlFlowView_hierarchicalViewLabel;
45 public static String ControlFlowView_hierarchicalViewToolTip;
dedc7dec
PT
46
47 public static String ResourcesView_stateTypeName;
af10fe06 48 public static String ResourcesView_multipleStates;
dedc7dec
PT
49 public static String ResourcesView_nextResourceActionNameText;
50 public static String ResourcesView_nextResourceActionToolTipText;
51 public static String ResourcesView_previousResourceActionNameText;
52 public static String ResourcesView_previousResourceActionToolTipText;
53 public static String ResourcesView_attributeCpuName;
54 public static String ResourcesView_attributeIrqName;
55 public static String ResourcesView_attributeSoftIrqName;
56 public static String ResourcesView_attributeHoverTime;
57 public static String ResourcesView_attributeTidName;
58 public static String ResourcesView_attributeProcessName;
59 public static String ResourcesView_attributeSyscallName;
60
61 static {
62 // initialize resource bundle
63 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
64 }
65
66 private Messages() {
67 }
68}
This page took 0.101192 seconds and 5 git commands to generate.