TMF: Introduce the XML state system view for data driven outputs
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.analysis.xml.ui / src / org / eclipse / linuxtools / internal / tmf / analysis / xml / ui / TmfXmlUiStrings.java
1 /*******************************************************************************
2 * Copyright (c) 2014 École Polytechnique de Montréal
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 * Geneviève Bastien - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.internal.tmf.analysis.xml.ui;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18 * This file defines all names in the XML Structure for UI elements
19 *
20 * @author Geneviève Bastien
21 */
22 @SuppressWarnings({ "javadoc", "nls" })
23 @NonNullByDefault
24 public interface TmfXmlUiStrings {
25
26 /* XML generic Element attribute names */
27 static final String TIME_GRAPH_VIEW = "timeGraphView";
28
29 /* View elements and attributes */
30 static final String ENTRY_ELEMENT = "entry";
31
32 /* Elements and attributes of view entries */
33 static final String PATH = "path";
34 static final String DISPLAY_ELEMENT = "display";
35 static final String PARENT_ELEMENT = "parent";
36 static final String NAME_ELEMENT = "name";
37 static final String ID_ELEMENT = "id";
38
39 /* Generic strings for the XML module */
40 static final String XML_OUTPUT_DATA = "xmlOutputData";
41
42 }
This page took 0.038217 seconds and 5 git commands to generate.