Browse Source
* commit 'a00862f8083f4fed6dff3aacce4c011f0a82149d': REPORT-147166 修改代码质量 REPORT-147166 修改代码质量 REPORT-147166 统信uos下切换条件属性后,卡片不能及时更新。 REPORT-147166 统信uos下切换条件属性后,卡片不能及时更新。 REPORT-147166 统信uos下切换条件属性后,卡片不能及时更新。bugfix/11.0
superman
3 days ago
4 changed files with 54 additions and 6 deletions
@ -0,0 +1,36 @@
|
||||
package com.fr.design.present; |
||||
|
||||
import com.fr.design.gui.controlpane.JControlUpdatePane; |
||||
import com.fr.design.gui.controlpane.ListControlPaneProvider; |
||||
|
||||
|
||||
/** |
||||
* 条件属性更新面板 |
||||
* |
||||
* @author lidongy |
||||
* @version 11.0 |
||||
* @since Created on 2025/1/23 |
||||
*/ |
||||
public class ConditionAttributesUpdatePane extends JControlUpdatePane { |
||||
|
||||
protected ConditionAttributesUpdatePane(ListControlPaneProvider listControlPane) { |
||||
super(listControlPane); |
||||
} |
||||
|
||||
/** |
||||
* 新建一个实例 |
||||
* @param listControlPane 父面板 |
||||
* @return 新面板实例 |
||||
*/ |
||||
public static JControlUpdatePane newInstance(ListControlPaneProvider listControlPane) { |
||||
return new ConditionAttributesUpdatePane(listControlPane); |
||||
} |
||||
|
||||
@Override |
||||
public void populate() { |
||||
super.populate(); |
||||
|
||||
cardPane.revalidate(); |
||||
cardPane.repaint(); |
||||
} |
||||
} |
Loading…
Reference in new issue