forked from fanruan/design
Browse Source
* commit '3d783a93155c7b81b47d9818e00773db750ead07': REPORT-48999 填报-填报属性设置-填报属性快捷设置远程设计修改无效 REPORT-47438 判断跟随自主界面的条件再优化补充下 REPORT-47438 设计器弹窗部分弹窗不跟随主屏位置 REPORT-47438 设计器弹窗部分弹窗不跟随主屏位置 REPORT-47438 设计器弹窗在多屏情况下部分弹窗显示在另一块屏幕feature/10.0
superman
4 years ago
9 changed files with 50 additions and 5 deletions
@ -0,0 +1,21 @@
|
||||
package com.fr.design.plugin; |
||||
|
||||
import com.fr.design.dialog.UIDialog; |
||||
|
||||
/** |
||||
* @author hades |
||||
* @version 10.0 |
||||
* Created by hades on 2021/3/8 |
||||
*/ |
||||
public class DesignerPluginContext { |
||||
|
||||
private static UIDialog DIALOG; |
||||
|
||||
public static UIDialog getPluginDialog() { |
||||
return DIALOG; |
||||
} |
||||
|
||||
public static void setPluginDialog(UIDialog pluginDialog) { |
||||
DesignerPluginContext.DIALOG = pluginDialog; |
||||
} |
||||
} |
Loading…
Reference in new issue