blob: 00ffe54d907561ebca36538d8138b36dca6128c5 [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.os.linux.core.inputoutput;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.osgi.util.NLS;
/**
* Message bundle for the Disks I/O module
*
* @author Yonni Chen
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.tracecompass.internal.analysis.os.linux.core.inputoutput.messages"; //$NON-NLS-1$
/**
* Used for disk read series
*/
public static @Nullable String DisksIODataProvider_read;
/**
* XY chart title
*/
public static @Nullable String DisksIODataProvider_title;
/**
* Used for disk write series
*/
public static @Nullable String DisksIODataProvider_write;
/**
* Data provider help text
*/
public static @Nullable String DisksIODataProviderFactory_descriptionText;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}