093c090e5e0482a8b4e0390633d8455b39d97cb3
[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 static final String XY_VIEW = "xyView";
29
30 /* View elements and attributes */
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";
39 static final String DISPLAY_TYPE = "displayType";
40 static final String DISPLAY_TYPE_ABSOLUTE = "absolute";
41 static final String DISPLAY_TYPE_DELTA = "delta";
42
43 /* Generic strings for the XML module */
44 static final String XML_OUTPUT_DATA = "xmlOutputData";
45
46 }
This page took 0.030487 seconds and 4 git commands to generate.