TMF: Add XML state provider analysis module and XML utilities
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.analysis.xml.core / src / org / eclipse / linuxtools / tmf / analysis / xml / core / stateprovider / TmfXmlStrings.java
1 /*******************************************************************************
2 * Copyright (c) 2014 Ecole Polytechnique
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 * Contributors:
10 * Florian Wininger - Initial implementation
11 ******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.analysis.xml.core.stateprovider;
14
15 /**
16 * This file defines all name in the XML Structure for the State Provider
17 *
18 * @author Florian Wininger
19 */
20 @SuppressWarnings({ "javadoc", "nls" })
21 public interface TmfXmlStrings {
22
23 /* XML Node Name */
24 static final String STATE_PROVIDER = "stateProvider";
25 static final String VALUE = "value";
26 static final String LABEL = "label";
27
28 /* XML Node Attribute */
29 static final String ANALYSIS_ID = "analysisId";
30 static final String NAME = "name";
31 static final String VERSION = "version";
32
33 }
This page took 0.03244 seconds and 6 git commands to generate.