blob: 41f044a5ac75f129c0f034feebc713e55cc54771 [file] [log] [blame]
/**
* Copyright (c) 2003 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.wst.server.ui.internal.viewers;
import org.eclipse.wst.server.core.IServerType;
import org.eclipse.wst.server.ui.internal.ImageResource;
import org.eclipse.swt.graphics.Image;
/**
* Server type label provider.
*/
public class ServerTypeTreeLabelProvider extends AbstractTreeLabelProvider {
/**
* ServerTypeTreeLabelProvider constructor comment.
*/
public ServerTypeTreeLabelProvider() {
super();
}
/**
*
*/
protected Image getImageImpl(Object element) {
IServerType type = (IServerType) element;
return ImageResource.getImage(type.getId());
}
/**
*
*/
protected String getTextImpl(Object element) {
IServerType type = (IServerType) element;
return notNull(type.getName());
}
}