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.
25 lines
542 B
25 lines
542 B
package com.fr.design.data.datapane; |
|
|
|
import com.fr.stable.fun.mark.Mutable; |
|
|
|
|
|
/** |
|
* 数据集Tree工具栏面板注入接口 |
|
* |
|
* @author Destiny.Lin |
|
* @since 11.0 |
|
* Created on 2024/11/1 |
|
*/ |
|
public interface TableDataTreeToolBarActionProvider extends Mutable { |
|
|
|
String XML_TAG = "TableDataTreeToolBarActionProvider"; |
|
|
|
int CURRENT_LEVEL = 1; |
|
|
|
/** |
|
* 创建Action对象,用于提供针对数据集的额外操作 |
|
* |
|
* @return 创建出来的Action对象 |
|
*/ |
|
TableDataTreePane.ExtraAction createAction(); |
|
}
|
|
|