blob: 45ae40f4d77cee14733056ecde465c34b7c8ed4c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*******************************************************************************/
package org.eclipse.tracecompass.incubator.internal.callstack.ui.flamegraph;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.osgi.util.NLS;
/**
* Message bundle for the flame graph view
*
* @author Sonia Farrah
*/
@NonNullByDefault({})
public class Messages extends NLS {
private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
/** Label for the symbol */
public static String FlameGraph_Symbol;
/** Label for the CPU times */
public static String FlameGraph_Total;
/** Label for total CPU time */
public static String FlameGraph_Average;
/** Label for average CPU time */
public static String FlameGraph_Min;
/** Label for minimum CPU time */
public static String FlameGraph_Max;
/** Label for maximum CPU time */
public static String FlameGraph_Deviation;
/**
* The number of calls of a function
*/
public static String FlameGraph_NbCalls;
/**
* The depth of a function
*/
public static String FlameGraph_Depth;
/**
* Percentage text
*/
public static String FlameGraph_Percentage;
/**
* Go to maximum duration
*/
public static String FlameGraphView_GotoMaxDuration;
/**
* Go to minimum duration
*/
public static String FlameGraphView_GotoMinDuration;
/** The action name for grouping */
public static String FlameGraphView_GroupByName;
/** The action tooltip for grouping */
public static String FlameGraphView_GroupByTooltip;
/**
* The action name for sorting by thread name
*/
public static String FlameGraph_SortByThreadName;
/**
* The action name for sorting by thread name
*/
public static String FlameGraph_SortByThreadId;
/**
* Execution of the callGraph Analysis
*/
public static String FlameGraphView_RetrievingData;
/**
* TimeGraphEntry name for the FlameGraph content provider
*/
public static String FlameGraphContentProvider_EntryName;
/**
* Symbols provider action text
*/
public static String FlameGraphView_ConfigureSymbolProvidersText;
/**
* Symbols provider action tooltip
*/
public static String FlameGraphView_ConfigureSymbolProvidersTooltip;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}