/******************************************************************************* * Copyright (c) 2016 EfficiOS Inc., Philippe Proulx * * 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.internal.provisional.analysis.lami.core; /** * Strings used in the config files describing LAMI analyses. * * @author Philippe Proulx * @noimplement This interface is not intended to be implemented by clients. */ @SuppressWarnings({ "javadoc", "nls" }) public interface LamiConfigFileStrings { String PROP_NAME = "name"; String PROP_COMMAND = "command"; }