doc: User guide updates for missing or incorrect content
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / tmf / core / trace / ITmfTraceProperties.java
CommitLineData
22307af3 1/*******************************************************************************
ed902a2b 2 * Copyright (c) 2013, 2014 Ericsson
22307af3
AM
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 * Alexandre Montplaisir - Initial API and implementation
11 *******************************************************************************/
12
2bdf0193 13package org.eclipse.tracecompass.tmf.core.trace;
22307af3
AM
14
15import java.util.Map;
16
4c4e2816
AM
17import org.eclipse.jdt.annotation.NonNullByDefault;
18
22307af3
AM
19/**
20 * Interface for trace types to implement when they can provide additional
21 * trace-wide properties.
22 *
23 * This information will be displayed in the trace's Properties View, among
24 * other things.
25 *
26 * @author Alexandre Montplaisir
22307af3 27 */
4c4e2816 28@NonNullByDefault
22307af3
AM
29public interface ITmfTraceProperties {
30
31 /**
32 * Get the properties related to this trace.
33 *
34 * @return The map of properties, <name, value>
35 */
36 public Map<String, String> getTraceProperties();
37}
This page took 0.070981 seconds and 5 git commands to generate.