blob: a014326de594c74cbc5d3172acef1d6266987bb1 [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2004 IBM Corporation and others. All rights reserved. This
* program and the accompanying materials are made available under the terms of
* the Common Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM - Initial API and implementation
**********************************************************************/
package org.eclipse.ui.internal.progress;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.swt.widgets.Control;
/**
* The ProgressViewerLabelProvider is the label provider for progress viewers.
*/
public class ProgressViewerLabelProvider extends LabelProvider {
private Control control;
/*
* (non-Javadoc)
*
* @see org.eclipse.jface.viewers.LabelProvider#getText(java.lang.Object)
*/
public String getText(Object element) {
JobTreeElement info = (JobTreeElement) element;
return ProgressManagerUtil.shortenText(
info.getCondensedDisplayString(), control);
}
/**
* Create a new instance of the receiver within the control.
*
* @param progressViewer
*/
public ProgressViewerLabelProvider(Control progressControl) {
super();
control = progressControl;
}
}