You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
656 B
28 lines
656 B
package com.fr.design.fun; |
|
|
|
import com.fr.design.beans.BasicBeanPane; |
|
import com.fr.report.cell.TemplateCellElement; |
|
import com.fr.stable.fun.mark.Mutable; |
|
|
|
/** |
|
* @author yaohwu |
|
* created by yaohwu at 2020/4/26 15:50 |
|
*/ |
|
public interface CellExpandAttrPanelProvider extends Mutable { |
|
|
|
String MARK_STRING = "CellExpandAttrPanelProvider"; |
|
|
|
int CURRENT_LEVEL = 1; |
|
|
|
/** |
|
* @return 创建单元格属性-扩展设置中的额外面板 |
|
*/ |
|
BasicBeanPane<TemplateCellElement> createPanel(); |
|
|
|
/** |
|
* 是否应该展示 |
|
* |
|
* @return return {@code true} if extra panel is displayable |
|
*/ |
|
boolean isDisplayable(); |
|
}
|
|
|