blob: 171b3b1a2f8c18d039d720987116a5e2af577eba [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2014 Ericsson
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License 2.0 which
* accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Francois Chouinard - Initial API and implementation
* Patrick Tasse - Add support for folder elements
*******************************************************************************/
package org.eclipse.tracecompass.tmf.ui.project.model;
import org.eclipse.jface.viewers.LabelProvider;
/**
* Label provider implementation for trace folders for viewers that display
* the content of a trace folder.
* <p>
*
* @version 1.0
* @author Francois Chouinard
*/
public class TraceFolderLabelProvider extends LabelProvider {
@Override
public String getText(Object element) {
if (element instanceof TmfTraceElement) {
TmfTraceElement entry = (TmfTraceElement) element;
return entry.getElementPath();
}
return null;
}
}