Browse Source

DEC-472 新模块划分与启动、关闭框架

启动设计器选择环境时抛错修复
master
ju 7 years ago
parent
commit
a19aa9e817
  1. 3
      designer/src/com/fr/start/module/DesignerStartup.java

3
designer/src/com/fr/start/module/DesignerStartup.java

@ -4,6 +4,7 @@ import com.fr.design.DesignerEnvManager;
import com.fr.design.utils.DesignUtils; import com.fr.design.utils.DesignUtils;
import com.fr.general.ComparatorUtils; import com.fr.general.ComparatorUtils;
import com.fr.module.Activator; import com.fr.module.Activator;
import com.fr.stable.CoreActivator;
import com.fr.stable.ProductConstants; import com.fr.stable.ProductConstants;
import com.fr.stable.module.ModuleListener; import com.fr.stable.module.ModuleListener;
import com.fr.start.Designer; import com.fr.start.Designer;
@ -40,7 +41,7 @@ public class DesignerStartup extends Activator {
//启动env //启动env
startSub(DesignerEnvProvider.class); startSub(DesignerEnvProvider.class);
//启动各个模块 //启动各个模块
getSub("core").start(); getSub(CoreActivator.class).start();
getSub("designer").start(); getSub("designer").start();
getRoot().getSingleton(EnvSwitcher.class).switch2LastEnv(); getRoot().getSingleton(EnvSwitcher.class).switch2LastEnv();
//启动设计器界面 //启动设计器界面

Loading…
Cancel
Save