blob: 7a38474f29302df8666dec9e93e67a7ef527ff87 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Patrick Tasse - Initial API and implementation
*******************************************************************************/
package org.eclipse.tracecompass.tmf.core.resources;
/**
* Interface for TMF-specific marker constants
*
* @noimplement This interface is not intended to be implemented by clients.
* @since 2.0
*/
public interface ITmfMarker {
/** Color marker attribute. The format is the output of RGBA.toString(). */
String MARKER_COLOR = "color"; //$NON-NLS-1$
/** Rank marker attribute. The format is the output of Long.toString(). */
String MARKER_RANK = "rank"; //$NON-NLS-1$
/** Time marker attribute. The format is the output of Long.toString(). */
String MARKER_TIME = "time"; //$NON-NLS-1$
/** Duration marker attribute. The format is the output of Long.toString(). */
String MARKER_DURATION = "duration"; //$NON-NLS-1$
}