flamegraph: Add go to min/max context menus in UI
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.ui / src / org / eclipse / tracecompass / internal / analysis / timing / ui / flamegraph / 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.analysis.timing.ui.flamegraph;
10
11 import org.eclipse.osgi.util.NLS;
12
13 /**
14 * Message bundle for the flame graph view
15 *
16 * @author Sonia Farrah
17 */
18 public class Messages extends NLS {
19 private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
20 /**
21 * The duration of a function
22 */
23 public static String FlameGraph_Duration;
24 /**
25 * The time percentage of a function
26 */
27 public static String FlameGraph_Percentage;
28 /**
29 * The number of calls of a function
30 */
31 public static String FlameGraph_NbCalls;
32 /**
33 * The self time of a function
34 */
35 public static String FlameGraph_SelfTime;
36 /**
37 * The depth of a function
38 */
39 public static String FlameGraph_Depth;
40 /**
41 * The maximum duration of a function
42 */
43 public static String FlameGraph_MaxDuration;
44 /**
45 * The minimum duration of a function
46 */
47 public static String FlameGraph_MinDuration;
48 /**
49 * The average duration of a function
50 */
51 public static String FlameGraph_AverageDuration;
52 /**
53 * The average self time of a function
54 */
55 public static String FlameGraph_AverageSelfTime;
56 /**
57 * The maximum self time of a function
58 */
59 public static String FlameGraph_MaxSelfTime;
60 /**
61 * The minimum self time of a function
62 */
63 public static String FlameGraph_MinSelfTime;
64 /**
65 * The standard deviation of a function
66 */
67 public static String FlameGraph_Deviation;
68 /**
69 * The standard deviation of a function's self time
70 */
71 public static String FlameGraph_SelfTimeDeviation;
72 /**
73 * The function's durations
74 */
75 public static String FlameGraph_Durations;
76 /**
77 * The function's self times
78 */
79 public static String FlameGraph_SelfTimes;
80 /**
81 * Go to maximum duration
82 */
83 public static String FlameGraphView_GotoMaxDuration;
84 /**
85 * Go to minimum duration
86 */
87 public static String FlameGraphView_GotoMinDuration;
88 /**
89 * Execution of the callGraph Analysis
90 */
91 public static String CallGraphAnalysis_Execution;
92
93 static {
94 // initialize resource bundle
95 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
96 }
97
98 private Messages() {
99 }
100 }
This page took 0.03434 seconds and 5 git commands to generate.