/* * SonarLint for Eclipse * Copyright (C) 2015-2017 SonarSource SA * sonarlint@sonarsource.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonarlint.eclipse.ui.internal.server; import org.eclipse.core.resources.IWorkspaceRoot; import org.eclipse.core.runtime.Platform; import org.eclipse.swt.graphics.Image; import org.eclipse.ui.PlatformUI; import org.sonarlint.eclipse.core.internal.server.IServer; import org.sonarlint.eclipse.core.internal.utils.StringUtils; import org.sonarlint.eclipse.core.resource.ISonarLintProject; import org.sonarlint.eclipse.ui.internal.SonarLintImages; import org.sonarlint.eclipse.ui.internal.SonarLintUiPlugin; /** * Server table label provider. */ public class ServerLabelProvider extends BaseCellLabelProvider { @Override public String getText(Object element) { if (element instanceof IServer) { IServer server = (IServer) element; return StringUtils.defaultString(server.getId()); } if (element instanceof ISonarLintProject) { return ((ISonarLintProject) element).getName(); } if (element instanceof IWorkspaceRoot) { return Platform.getResourceString(SonarLintUiPlugin.getDefault().getBundle(), "%viewServers"); } return ""; } @Override public Image getImage(Object element) { if (element instanceof IServer) { return SonarLintImages.SERVER_ICON_IMG; } if (element instanceof ISonarLintProject) { return PlatformUI.getWorkbench().getSharedImages().getImage(org.eclipse.ui.ide.IDE.SharedImages.IMG_OBJ_PROJECT); } return null; } @Override public Image getColumnImage(Object element, int index) { // Left blank since the CNF doesn't support this return null; } @Override public String getColumnText(Object element, int index) { // Left blank since the CNF doesn't support this return null; } }