blob: 98f49a188f57093a2eab8cf3e2c3f15d5f3bf046 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2016 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 Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.ui.internal.search;
import org.eclipse.help.internal.workingset.AdaptableToc;
import org.eclipse.help.internal.workingset.AdaptableTopic;
import org.eclipse.jface.viewers.LabelProvider;
import org.eclipse.swt.graphics.Image;
public class HelpWorkingSetElementLabelProvider extends LabelProvider {
/**
* Constructor for HelpWorkingSetElementLabelProvider.
*/
public HelpWorkingSetElementLabelProvider() {
super();
}
/**
* @see org.eclipse.jface.viewers.ILabelProvider#getImage(java.lang.Object)
*/
@Override
public Image getImage(Object element) {
return null;
}
/**
* @see org.eclipse.jface.viewers.ILabelProvider#getText(java.lang.Object)
*/
@Override
public String getText(Object element) {
if (element instanceof AdaptableToc)
return ((AdaptableToc) element).getLabel();
else if (element instanceof AdaptableTopic)
return ((AdaptableTopic) element).getLabel();
else
return null;
}
}