Remove all existing @since annotations
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / TmfCommonConstants.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2014 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 * Bernd Hufmann - Initial API and implementation
11 * Patrick Tasse - Add support for source location
12 *******************************************************************************/
13 package org.eclipse.tracecompass.tmf.core;
14
15 import org.eclipse.core.runtime.QualifiedName;
16
17 /**
18 * This class provides a common container for TMF constants.
19 *
20 * @author Bernd Hufmann
21 */
22 public class TmfCommonConstants {
23
24 // ------------------------------------------------------------------------
25 // Constants
26 // ------------------------------------------------------------------------
27
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$
32
33 /**
34 * The source location persistent property of a trace resource.
35 */
36 public static final QualifiedName SOURCE_LOCATION = new QualifiedName("org.eclipse.linuxtools.tmf", "source.location"); //$NON-NLS-1$//$NON-NLS-2$
37
38 /**
39 * The supplementary folder name persistent property of a trace resource.
40 */
41 public static final QualifiedName TRACE_SUPPLEMENTARY_FOLDER = new QualifiedName("org.eclipse.linuxtools.tmf", "trace.suppl.folder"); //$NON-NLS-1$//$NON-NLS-2$
42
43 /**
44 * 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.
45 */
46 public static final String TRACE_SUPPLEMENTARY_FOLDER_NAME = ".tracing"; //$NON-NLS-1$
47
48 /**
49 * The name of the default project that can be created under various
50 * conditions when there is no tracing project in the workspace.
51 */
52 public static final String DEFAULT_TRACE_PROJECT_NAME = Messages.DefaultTraceProjectName;
53
54 }
This page took 0.078106 seconds and 5 git commands to generate.