Browse Source
Merge in DESIGN/design from ~DESTINY.LIN/design:release/10.0 to release/10.0 * commit 'f9e44623518994bf4cc7f29b11fdc7b0ae84e1d0': REPORT-86364 服务平台设计器适配security/10.0
Destiny.Lin-林锦龙
2 years ago
4 changed files with 39 additions and 2 deletions
@ -0,0 +1,30 @@ |
|||||||
|
package com.fr.design.mainframe.platform; |
||||||
|
|
||||||
|
import com.fr.design.actions.UpdateAction; |
||||||
|
import com.fr.design.i18n.Toolkit; |
||||||
|
import com.fr.design.utils.BrowseUtils; |
||||||
|
import com.fr.general.CloudCenter; |
||||||
|
import com.fr.log.FineLoggerFactory; |
||||||
|
|
||||||
|
import java.awt.Desktop; |
||||||
|
import java.awt.event.ActionEvent; |
||||||
|
import java.net.URI; |
||||||
|
|
||||||
|
/** |
||||||
|
* 帮助-服务平台 |
||||||
|
* |
||||||
|
* @author Destiny.Lin |
||||||
|
* @version 11.0 |
||||||
|
* created by Destiny.Lin on 2022-12-14 |
||||||
|
*/ |
||||||
|
public class ServicePlatformAction extends UpdateAction { |
||||||
|
public ServicePlatformAction() { |
||||||
|
this.setName(Toolkit.i18nText("Fine-Design_Basic_Service_Platform_Title")); |
||||||
|
this.setSmallIcon("/com/fr/design/images/platform/platform"); |
||||||
|
} |
||||||
|
|
||||||
|
@Override |
||||||
|
public void actionPerformed(ActionEvent e) { |
||||||
|
BrowseUtils.browser(CloudCenter.getInstance().acquireUrlByKind("service.platform")); |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue