blob: 4b779c5fcfa1c38fc7c2afa449615baa611827d4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 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.internal.analysis.counters.ui;
import org.eclipse.osgi.util.NLS;
/**
* Message bundle
*
* @author Mikael Ferland
*/
@SuppressWarnings("javadoc")
public class Messages extends NLS {
private Messages() {
}
private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.counters.ui.messages"; //$NON-NLS-1$
static {
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
public static String CounterView_CumulativeAction_Text;
public static String CounterView_CumulativeAction_CumulativeTooltipText;
public static String CounterView_CumulativeAction_DifferentialTooltipText;
}