tmf/lttng: Update 2014 copyrights
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / TmfCommonConstants.java
CommitLineData
86cf88b5 1/*******************************************************************************
60ae41e1 2 * Copyright (c) 2011, 2014 Ericsson
b5a80fe7 3 *
86cf88b5
BH
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
b5a80fe7 8 *
86cf88b5
BH
9 * Contributors:
10 * Bernd Hufmann - Initial API and implementation
11 *******************************************************************************/
12package org.eclipse.linuxtools.tmf.core;
13
14import org.eclipse.core.runtime.QualifiedName;
15
16/**
17 * This class provides a common container for TMF constants.
b5a80fe7 18 *
8fd82db5 19 * @version 1.0
86cf88b5
BH
20 * @author Bernd Hufmann
21 */
22public class TmfCommonConstants {
23
24 // ------------------------------------------------------------------------
25 // Constants
26 // ------------------------------------------------------------------------
b5a80fe7 27
86cf88b5
BH
28 /**
29 * The trace type ID persistent property of a trace resource.
30 */
31 public static final QualifiedName TRACETYPE = new QualifiedName("org.eclipse.linuxtools.tmf", "tracetype.id"); //$NON-NLS-1$//$NON-NLS-2$
2d64a788
AM
32
33
86cf88b5
BH
34 /**
35 * The supplementary folder name persistent property of a trace resource.
36 */
37 public static final QualifiedName TRACE_SUPPLEMENTARY_FOLDER = new QualifiedName("org.eclipse.linuxtools.tmf", "trace.suppl.folder"); //$NON-NLS-1$//$NON-NLS-2$
2d64a788 38
86cf88b5 39 /**
b5a80fe7 40 * The name of the parent folder for storing trace specific supplementary data. Each trace will have a sub-directory underneath with folder name equal to the trace name.
86cf88b5
BH
41 */
42 public static final String TRACE_SUPPLEMENATARY_FOLDER_NAME = ".tracing"; //$NON-NLS-1$
b5a80fe7
MAL
43
44 /**
45 * The name of the default project that can be created under various
46 * conditions when there is no tracing project in the workspace.
47 *
48 * @since 2.2
49 */
50 public static final String DEFAULT_TRACE_PROJECT_NAME = Messages.DefaultTraceProjectName;
2d64a788 51
86cf88b5 52}
This page took 0.039168 seconds and 5 git commands to generate.