e1f176bff836df0beb67e80cef2825d3295803be
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.ui / src / org / eclipse / tracecompass / internal / lttng2 / ust / ui / analysis / callstack / Messages.java
1 /*******************************************************************************
2 * Copyright (c) 2016 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 package org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.callstack;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * Message bundle for the call stack analysis module
15 *
16 * @author Sonia Farrah
17 */
18
19 public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.lttng2.ust.ui.analysis.callstack.messages"; //$NON-NLS-1$
21
22 /**
23 * Self time of a function
24 */
25 public static String SegmentStoreStaticsViewer_selfTime;
26 /**
27 * Total time of a function
28 */
29 public static String SegmentStoreStaticsViewer_totalTime;
30
31 /**
32 * Adress of a function
33 */
34 public static String Function_address;
35 /**
36 * Total self Time of a function
37 */
38 public static String SegmentStoreStaticsViewer_totalSelfTime;
39
40 /**
41 * Total calls of a function
42 */
43 public static String SegmentStoreStaticsViewer_totalCalls;
44 /**
45 *The callers of a function
46 */
47 public static String SegmentStoreStaticsViewer_Callers;
48 /**
49 *The callees of a function
50 */
51 public static String SegmentStoreStaticsViewer_Callees;
52 /**
53 *The depth of a function
54 */
55 public static String SegmentStoreStaticsViewer_Depth;
56 /**
57 *The duration of a function
58 */
59 public static String FlameGraph_Duration;
60 /**
61 *The time percentage of a function
62 */
63 public static String FlameGraph_Percentage;
64 /**
65 *The number of calls of a function
66 */
67 public static String FlameGraph_NbreCalls;
68
69 static {
70 // initialize resource bundle
71 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
72 }
73
74 /** Information regarding events loading prior to the analysis execution */
75 public static String LttnUstCallStackAnalysisModule_EventsLoadingInformation;
76
77 private Messages() {
78 }
79 }
This page took 0.032449 seconds and 4 git commands to generate.