/******************************************************************************* * Copyright (c) 2017 Rogue Wave Software Inc. 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: * Rogue Wave Software Inc. - initial implementation *******************************************************************************/ package org.eclipse.php.profile.ui.wizards; import org.eclipse.jface.viewers.LabelProvider; import org.eclipse.osgi.util.NLS; import org.eclipse.php.profile.core.engine.ProfilerDB; import org.eclipse.php.profile.ui.PHPProfileUIMessages; import org.eclipse.php.profile.ui.ProfilerUIImages; import org.eclipse.swt.graphics.Image; /** * Profile sessions label provider. */ class ProfileSessionsLabelProvider extends LabelProvider { private Image fProcessImage; public ProfileSessionsLabelProvider() { fProcessImage = ProfilerUIImages. get(ProfilerUIImages.IMG_OBJ_PROCESS); } public Image getImage(Object element) { if (element instanceof ProfilerDB) { return fProcessImage; } return null; } public String getText(Object element) { if (element instanceof ProfilerDB) { ProfilerDB db = (ProfilerDB) element; return NLS .bind( PHPProfileUIMessages .getString("ProfilingMonitorLabelProvider.0"), db.getGlobalData().getURI(), db.getProfileDate()); //$NON-NLS-1$ } return super.getText(element); } }