analysis.lami: Correctly reject lttng-analyses > 0.4
[deliverable/tracecompass.git] / analysis / org.eclipse.tracecompass.analysis.lami.core / src / org / eclipse / tracecompass / internal / provisional / analysis / lami / core / LamiConfigFileStrings.java
1 /*******************************************************************************
2 * Copyright (c) 2016 EfficiOS Inc., Philippe Proulx
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *******************************************************************************/
9
10 package org.eclipse.tracecompass.internal.provisional.analysis.lami.core;
11
12 /**
13 * Strings used in the config files describing LAMI analyses.
14 *
15 * @author Philippe Proulx
16 * @noimplement This interface is not intended to be implemented by clients.
17 */
18 @SuppressWarnings({ "javadoc", "nls" })
19 public interface LamiConfigFileStrings {
20
21 String PROP_NAME = "name";
22 String PROP_COMMAND = "command";
23
24 }
This page took 0.030197 seconds and 5 git commands to generate.