forked from eclipse-che/che
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CHE-4594: Make che-plugin-product-info optional for IDE (eclipse-che#…
…4682) Signed-off-by: Vitalii Parfonov <[email protected]>
- Loading branch information
Vitalii Parfonov
authored
Apr 4, 2017
1 parent
c0c1184
commit d6ef933
Showing
4 changed files
with
59 additions
and
6 deletions.
There are no files selected for viewing
49 changes: 49 additions & 0 deletions
49
ide/che-core-ide-api/src/main/java/org/eclipse/che/ide/api/ProductInfoDataProviderImpl.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/******************************************************************************* | ||
* 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 ""; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters