Browse Source
Merge in DESIGN/design from ~TOMMY/design:feature/10.0 to feature/10.0 * commit '61c6ac4fb10d7a26375c5a75cc9bdb31fb4cb107': REPORT-51678 事件配置项支持重命名 REPORT-52928 部分埋点没有记录 REPORT-52895 部分埋点没有记录 REPORT-52818 图表块点击快捷配置触发了编辑效果 REPORT-52816 编辑框对齐 REPORT-52819 加密组件加载相关逻辑补充feature/10.0
Tommy
4 years ago
14 changed files with 94 additions and 22 deletions
@ -0,0 +1,13 @@
|
||||
package com.fr.design.mainframe.share.util; |
||||
|
||||
import com.fr.form.share.encrypt.engine.SharableReadHelper; |
||||
import com.fr.stable.xml.XMLConf; |
||||
import com.fr.stable.xml.helper.XMLReadHelper; |
||||
|
||||
public class SharableXMLUtils { |
||||
public static synchronized void registerSharableReadHelper() { |
||||
XMLReadHelper readHelper = XMLConf.getReadHelper(); |
||||
XMLReadHelper helper = new SharableReadHelper(readHelper); |
||||
XMLConf.registerXMLHelper(helper); |
||||
} |
||||
} |
@ -0,0 +1,11 @@
|
||||
package com.fr.design.share; |
||||
|
||||
import com.fr.design.mainframe.share.collect.SharableCollectorManager; |
||||
import com.fr.design.mainframe.share.util.SharableXMLUtils; |
||||
|
||||
public class SharableInitManager { |
||||
public static void start() { |
||||
SharableXMLUtils.registerSharableReadHelper(); |
||||
SharableCollectorManager.getInstance().execute(); |
||||
} |
||||
} |
Loading…
Reference in new issue