You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
768 B
26 lines
768 B
package com.fr.start; |
|
|
|
import com.fr.design.DesignerEnvManager; |
|
import com.fr.design.env.DesignerWorkspaceGenerator; |
|
import com.fr.design.mainframe.TemplatePane; |
|
import com.fr.workspace.WorkContext; |
|
import com.fr.workspace.Workspace; |
|
|
|
/** |
|
* Created by juhaoyu on 2018/1/31. |
|
* 环境切换器 |
|
*/ |
|
public class EnvSwitcher { |
|
|
|
public void switch2LastEnv() { |
|
|
|
try { |
|
String current = DesignerEnvManager.getEnvManager().getCurEnvName(); |
|
Workspace workspace = DesignerWorkspaceGenerator.generate(DesignerEnvManager.getEnvManager().getEnv(current)); |
|
WorkContext.switchTo(workspace); |
|
} catch (Exception e) { |
|
TemplatePane.getInstance().dealEvnExceptionWhenStartDesigner(); |
|
} |
|
} |
|
|
|
}
|
|
|