analysis: Move plugins to their own sub-directory
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.ui / src / org / eclipse / tracecompass / tmf / ui / viewers / tree / ITmfTreeColumnDataProvider.java
CommitLineData
c0188b25
GB
1/*******************************************************************************
2 * Copyright (c) 2011, 2014 Ericsson, École Polytechnique de Montréal
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 - Initial API and Implementation
11 * Geneviève Bastien - Moved class and adapted it to abstract tree viewer
12 *******************************************************************************/
13
2bdf0193 14package org.eclipse.tracecompass.tmf.ui.viewers.tree;
c0188b25
GB
15
16import java.util.List;
17
18/**
19 * Basic methods that must be implemented in a column data provider. Tree
20 * viewers will use class implementing this to populate the columns.
21 *
22 * @author Mathieu Denis
c0188b25
GB
23 */
24public interface ITmfTreeColumnDataProvider {
25
26 /**
27 * Return a list of the column created for the view
28 *
29 * @return columns list
30 */
31 List<TmfTreeColumnData> getColumnData();
32}
This page took 0.055843 seconds and 5 git commands to generate.