ab9379dc581af3ccc0ec34759813e51e5f551aee
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.remote.ui / src / org / eclipse / tracecompass / internal / tmf / remote / ui / wizards / fetch / model / RemoteImportProfileConstants.java
1 /*******************************************************************************
2 * Copyright (c) 2015 Ericsson
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 * Marc-Andre Laperle - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.internal.tmf.remote.ui.wizards.fetch.model;
14
15 /**
16 * Constants used in the remote import model (XML attribute and element names, etc).
17 *
18 * @author Marc-Andre Laperle
19 * @noimplement
20 */
21 public interface RemoteImportProfileConstants {
22
23 /**
24 * The current version constant.
25 */
26 public static final String VERSION = "0.1"; //$NON-NLS-1$
27
28 /**
29 * Element representing the root of the profiles.
30 */
31 public static final String PROFILES_ELEMENT = "profiles"; //$NON-NLS-1$
32
33 /**
34 * Element representing the version the profiles file.
35 */
36 public static final String VERSION_ELEMENT = "version"; //$NON-NLS-1$
37
38 /**
39 * Element representing the root of a profile.
40 */
41 public static final String PROFILE_ELEMENT = "profile"; //$NON-NLS-1$
42
43 /**
44 * Attribute representing the name of a profile.
45 */
46 public static final String PROFILE_NAME_ATTRIB = "name"; //$NON-NLS-1$
47
48 /**
49 * Element representing the a group of traces.
50 */
51 public static final String TRACE_GROUP_ELEMENT = "traceGroup"; //$NON-NLS-1$
52
53 /**
54 * Attribute representing the root path of a trace group.
55 */
56 public static final String TRACE_GROUP_ROOT_ATTRIB = "root"; //$NON-NLS-1$
57
58 /**
59 * Attribute representing whether or not the group of traces should be
60 * imported recursively.
61 */
62 public static final String TRACE_GROUP_RECURSIVE_ATTRIB = "recursive"; //$NON-NLS-1$
63
64 /**
65 * Element representing the connection node.
66 */
67 public static final String NODE_ELEMENT = "node"; //$NON-NLS-1$
68
69 /**
70 * Attribute representing the name of the connection node.
71 */
72 public static final String NODE_NAME_ATTRIB = "name"; //$NON-NLS-1$
73
74 /**
75 * Element representing the URI of the connection node.
76 */
77 public static final String NODE_URI_ELEMENT = "uri"; //$NON-NLS-1$
78 }
This page took 0.034745 seconds and 4 git commands to generate.