tmf: formatting of tmf.ui.statistics
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / statistics / model / ITmfColumnDataProvider.java
CommitLineData
79e08fd0 1/*******************************************************************************
b544077e 2 * Copyright (c) 2011, 2012 Ericsson
09667aa4 3 *
79e08fd0
BH
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
09667aa4 8 *
79e08fd0 9 * Contributors:
09667aa4 10 * Mathieu Denis <mathieu.denis@polymtl.ca> - Initial API and Implementation
79e08fd0
BH
11 *******************************************************************************/
12
13package org.eclipse.linuxtools.tmf.ui.views.statistics.model;
14
9fa32496 15import java.util.List;
79e08fd0
BH
16
17/**
09667aa4
MD
18 * Basic methods that must be implemented in a column data provider. The
19 * <code>TmfStatisticsView</code> uses classes implementing this interface to
20 * define the columns in the statistics tree viewer.
21 *
b544077e
BH
22 * @version 1.0
23 * @author Mathieu Denis
79e08fd0
BH
24 */
25public interface ITmfColumnDataProvider {
09667aa4 26
79e08fd0
BH
27 /**
28 * Return a list of the column created for the view
09667aa4 29 *
79e08fd0
BH
30 * @return columns list
31 */
9fa32496 32 public List<TmfBaseColumnData> getColumnData();
79e08fd0 33}
This page took 0.029914 seconds and 5 git commands to generate.