Force pin action on all views
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.analysis.xml.ui / src / org / eclipse / tracecompass / internal / tmf / analysis / xml / ui / TmfXmlUiStrings.java
CommitLineData
048bde85
GB
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
2bdf0193 13package org.eclipse.tracecompass.internal.tmf.analysis.xml.ui;
048bde85
GB
14
15import 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
24public interface TmfXmlUiStrings {
25
26 /* XML generic Element attribute names */
1a23419e 27 static final String TIME_GRAPH_VIEW = "timeGraphView";
87c5447c 28 static final String XY_VIEW = "xyView";
048bde85
GB
29
30 /* View elements and attributes */
048bde85
GB
31 static final String ENTRY_ELEMENT = "entry";
32
33 /* Elements and attributes of view entries */
34 static final String PATH = "path";
35 static final String DISPLAY_ELEMENT = "display";
36 static final String PARENT_ELEMENT = "parent";
37 static final String NAME_ELEMENT = "name";
38 static final String ID_ELEMENT = "id";
e2ea8484
GB
39 static final String DISPLAY_TYPE = "displayType";
40 static final String DISPLAY_TYPE_ABSOLUTE = "absolute";
41 static final String DISPLAY_TYPE_DELTA = "delta";
048bde85
GB
42
43 /* Generic strings for the XML module */
44 static final String XML_OUTPUT_DATA = "xmlOutputData";
45
38fad53e
JCK
46 static final String XML_LATENCY_OUTPUT_DATA = "xmlLatencyOutputData";
47
048bde85 48}
This page took 0.088043 seconds and 5 git commands to generate.