timing: show callStack segments in a density view
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.timing.core / src / org / eclipse / tracecompass / internal / analysis / timing / core / callgraph / 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.core.callgraph;
10
11 import org.eclipse.jdt.annotation.Nullable;
12 import org.eclipse.osgi.util.NLS;
13
14 /**
15 * Message bundle for the call stack analysis module
16 *
17 * @author Sonia Farrah
18 */
19 public class Messages extends NLS {
20 private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.timing.core.callgraph.messages"; //$NON-NLS-1$
21 /**
22 * Analysis description for the help
23 */
24 public static @Nullable String CallGraphAnalysis_Description;
25 /**
26 * The call stack event's name
27 */
28 public static @Nullable String CallStack_FunctionName;
29 /**
30 * Querying state system error's message
31 */
32 public static @Nullable String QueringStateSystemError;
33 /**
34 * Segment's start time exceeding its end time Error message
35 */
36 public static @Nullable String TimeError;
37 static {
38 // initialize resource bundle
39 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
40 }
41
42 private Messages() {
43 }
44 }
This page took 0.035451 seconds and 5 git commands to generate.