Browse Source
* 'feature/x' of ssh://code.fineres.com:7999/~fanglei/design: 无jira 任务,解决冲突 无jira 合并一个打包版本 无jira 解决冲突 REPORT-66196 【优化大文本】新建一个设置,显示部分设置字符长度5,点击保存后,查看有问题 REPORT-65724 安全性-水印-水印公式不解析 1.所有面板从全局读取水印 REPORT-65778 11.0设计器单元格默认字体问题-新建报表时工具预览字体默认是字体,但在单元格里输入任意内容后,字体变成了主题默认的黑体 REPORT-66169 mac双击模板文件时设计器无法唤起 REPORT-65373 JDK11设计器-菜单栏-文件-选项弹窗边框被截断 REPORT-66044 单元格复制以后,会导致两个单元格设置同一个表头区域 && REPORT-66020 点击智能框选后撤销,鼠标状态没有恢复默认 && REPORT-65994 添加排序按钮名称问题,交互确认 && REPORT-65993 表头图标颜色有问题 CHART-22545 设计器语言英语-甘特图-标签格式-控件宽度不一致 REPORT-65976 final同步传一份 代码修改 REPORT-65976 复用组件-绝对布局拖入绝对画布块的组件,绝对画布块里的子组件没有随着绝对画布块的尺寸进行缩放,比绝对画布块小;拖入到占位块里是正常充满的 REPORT-65194 公式模拟计算计算异常的提示框内的图标不正确 1.计算异常的时候给warn图标 Revert "REPORT-64445 新老自适应配置面板修改" REPORT-64445 新老自适应配置面板修改feature/x
方磊
3 years ago
19 changed files with 154 additions and 78 deletions
@ -0,0 +1,24 @@
|
||||
package com.fr.design.sort.common; |
||||
|
||||
import com.fr.design.designer.TargetComponent; |
||||
import com.fr.design.file.HistoryTemplateListCache; |
||||
import com.fr.design.mainframe.ElementCasePane; |
||||
import com.fr.design.mainframe.JTemplate; |
||||
import com.fr.log.FineLoggerFactory; |
||||
|
||||
public class SortUtils { |
||||
public static ElementCasePane getCurrentElementCase() { |
||||
try { |
||||
JTemplate jTemplate = HistoryTemplateListCache.getInstance().getCurrentEditingTemplate(); |
||||
if (jTemplate != null) { |
||||
TargetComponent targetComponent = jTemplate.getCurrentElementCasePane(); |
||||
if (targetComponent instanceof ElementCasePane) { |
||||
return (ElementCasePane) targetComponent; |
||||
} |
||||
} |
||||
} catch (Exception e) { |
||||
FineLoggerFactory.getLogger().error(e, e.getMessage()); |
||||
} |
||||
return null; |
||||
} |
||||
} |
Loading…
Reference in new issue