blob: 1f9150c647fe242e1e1b499052e1a4d123f52752 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2020 École Polytechnique de Montréal
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.tracecompass.incubator.internal.kernel.core.criticalpath;
import org.eclipse.jdt.annotation.Nullable;
import org.eclipse.osgi.util.NLS;
/**
* Messages for the aggregated critical path
*
* @author Geneviève Bastien
*/
public class Messages extends NLS {
private static final String BUNDLE_NAME = "org.eclipse.tracecompass.incubator.internal.kernel.core.criticalpath.messages"; //$NON-NLS-1$
/** String for the aggregation by process name */
public static @Nullable String CriticalPathWeighted_ByProcessName;
/** String for the aggregation by status */
public static @Nullable String CriticalPathWeighted_ByStatus;
/** String for the aggregation by thread */
public static @Nullable String CriticalPathWeighted_ByThread;
static {
// initialize resource bundle
NLS.initializeMessages(BUNDLE_NAME, Messages.class);
}
private Messages() {
}
}