a63bd2b5460c06a970d83c83e296b24732fd9ec1
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / viewers / statistics / model / ITmfColumnDataProvider.java
1 /*******************************************************************************
2 * Copyright (c) 2011, 2012 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 * Mathieu Denis <mathieu.denis@polymtl.ca> - Initial API and Implementation
11 *******************************************************************************/
12
13 package org.eclipse.linuxtools.tmf.ui.viewers.statistics.model;
14
15 import java.util.List;
16
17 /**
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 *
22 * @version 2.0
23 * @author Mathieu Denis
24 * @since 2.0
25 */
26 public interface ITmfColumnDataProvider {
27
28 /**
29 * Return a list of the column created for the view
30 *
31 * @return columns list
32 */
33 public List<TmfBaseColumnData> getColumnData();
34 }
This page took 0.031452 seconds and 5 git commands to generate.