/******************************************************************************* * Copyright (c) 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 v1.0 which * accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html *******************************************************************************/ package org.eclipse.tracecompass.common.core.process; 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 LamiAnalysis_MainTaskName; // public static String LamiAnalysis_NoResults; public static String ProcessUtils_ErrorDuringExecution; public static String ProcessUtils_ErrorNoOutput; public static String ProcessUtils_ExecutionInterrupted; static { NLS.initializeMessages(BUNDLE_NAME, Messages.class); } private Messages() {} }