/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.api; import org.vectomatic.dom.svg.ui.SVGResource; /** * @author Vitalii Parfonov */ public class ProductInfoDataProviderImpl implements ProductInfoDataProvider { @Override public String getName() { return "Che"; } @Override public String getSupportLink() { return ""; } @Override public String getDocumentTitle() { return ""; } @Override public String getDocumentTitle(String workspaceName) { return workspaceName; } @Override public SVGResource getLogo() { return null; } @Override public String getSupportTitle() { return ""; } }