tmf: Improve bookmark and marker handling
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / resources / ITmfMarker.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 * Patrick Tasse - Initial API and implementation
11 *******************************************************************************/
12
13 package org.eclipse.tracecompass.tmf.core.resources;
14
15 /**
16 * Interface for TMF-specific marker constants
17 *
18 * @noimplement This interface is not intended to be implemented by clients.
19 * @since 2.0
20 */
21 public interface ITmfMarker {
22
23 /** Color marker attribute. The format is the output of RGBA.toString(). */
24 String MARKER_COLOR = "color"; //$NON-NLS-1$
25
26 /** Rank marker attribute. The format is the output of Long.toString(). */
27 String MARKER_RANK = "rank"; //$NON-NLS-1$
28
29 /** Time marker attribute. The format is the output of Long.toString(). */
30 String MARKER_TIME = "time"; //$NON-NLS-1$
31
32 /** Duration marker attribute. The format is the output of Long.toString(). */
33 String MARKER_DURATION = "duration"; //$NON-NLS-1$
34
35 }
This page took 0.03155 seconds and 5 git commands to generate.