blob: dbff5943b955e6fb269f7862d5562e1f6a030eeb [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2017, 2018 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.timing.core.segmentstore;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.osgi.util.NLS;
/**
* Message bundle for the segment store analysis module
*
* @author Yonni Chen
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.timing.core.segmentstore.messages"; //$NON-NLS-1$
/** File size property title */
public static @Nullable String SegmentStoreAnalysis_PropertiesFileSize;
/**
* Analysis not executed property text
*/
public static @Nullable String SegmentStoreAnalysis_PropertiesAnalysisNotExecuted;
/** Error getting file size property text */
public static @Nullable String SegmentStoreAnalysis_ErrorGettingFileSize;
/**
* XY series name
*/
public static @Nullable String SegmentStoreDataProvider_Duration;
/**
* XY chart title
*/
public static @Nullable String SegmentStoreScatterGraphViewer_title;
/**
* Error message to say that SegmentStore must be an IAnalysisModule
*/
public static @Nullable String SegmentStoreDataProvider_SegmentMustBeAnIAnalysisModule;
/**
* Error message to say that SegmentStore is not available
*/
public static @Nullable String SegmentStoreDataProvider_SegmentNotAvailable;
/**
* Externalized name of the Selection entry
*/
public static @Nullable String SegmentStoreStatisticsDataProvider_Selection;
/**
* Externalized name of the Total entry
*/
public static @Nullable String SegmentStoreStatisticsDataProvider_Total;
/**
* Analysis name
*/
public static @Nullable String SegmentStoreStatisticsDataProviderFactory_AnalysisName;
/**
* Title of the data provider
*/
public static @Nullable String SegmentStoreScatterGraphDataProvider_title;
/**
* Description of the data provider
*/
public static @Nullable String SegmentStoreScatterGraphDataProvider_description;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}