Copyright header update, 2015 edition
[deliverable/tracecompass.git] / 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
17/**
18 * Interface for trace types to implement when they can provide additional
19 * trace-wide properties.
20 *
21 * This information will be displayed in the trace's Properties View, among
22 * other things.
23 *
24 * @author Alexandre Montplaisir
25 * @since 2.0
26 */
27public interface ITmfTraceProperties {
28
29 /**
30 * Get the properties related to this trace.
31 *
32 * @return The map of properties, <name, value>
33 */
34 public Map<String, String> getTraceProperties();
35}
This page took 0.050674 seconds and 5 git commands to generate.