blob: d7c0319133a5aa18053ea0586751e7e59d571484 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-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 progressControl The control that the label is
* being created for.
*/
public ProgressViewerLabelProvider(Control progressControl) {
super();
control = progressControl;
}
}