blob: 8cca50a89a39064839a39ce1bddf90b690598550 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015, 2016 EfficiOS Inc., Alexandre Montplaisir
*
* 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.provisional.analysis.lami.ui.views;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.eclipse.osgi.util.NLS;
/**
* Message bundle for the package
*
* @noreference Messages class
*/
@NonNullByDefault({})
@SuppressWarnings("javadoc")
public class Messages extends NLS {
private static final String BUNDLE_NAME = Messages.class.getPackage().getName() + ".messages"; //$NON-NLS-1$
public static String LamiReportView_ActivateTableAction_ButtonName;
public static String LamiReportView_ActivateTableAction_ButtonTooltip;
public static String LamiReportView_ActivateTableAction_ExportChart;
public static String LamiReportView_ToggleAction_ButtonNamePrefix;
public static String LamiReportView_ToggleAction_ButtonTooltip;
public static String LamiReportView_NewCustomChart;
public static String LamiReportView_ClearAllCustomViews;
static {
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}