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.
18 lines
459 B
18 lines
459 B
package com.fr.design.fun; |
|
|
|
import com.fr.design.cell.CellElementPropertyComponent; |
|
|
|
/** |
|
* 单元格设置(属性)扩展接口 |
|
* @author zack |
|
* @version 10.0 |
|
* Created by zack on 2020/7/14 |
|
*/ |
|
public interface CellPropertyPaneProvider extends PropertyItemPaneProvider { |
|
|
|
/** |
|
* 构造单元格属性面板,面板实现需要使用单例模式实现 |
|
* @return 面板类 |
|
*/ |
|
CellElementPropertyComponent getSingletonCelPropertyPane(); |
|
} |