forked from fanruan/finekit
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
569 B
28 lines
569 B
6 years ago
|
package com.fanruan.api.design.chart;
|
||
|
|
||
6 years ago
|
import com.fr.design.chartx.impl.AbstractDataPane;
|
||
6 years ago
|
import com.fr.design.gui.frpane.AttributeChangeListener;
|
||
|
|
||
|
/**
|
||
|
* @author Bjorn
|
||
|
* @version 10.0
|
||
|
* Created by Bjorn on 2019-09-18
|
||
|
*/
|
||
6 years ago
|
public abstract class BaseDataPane extends AbstractDataPane {
|
||
6 years ago
|
|
||
|
/**
|
||
|
* 构造函数
|
||
|
*/
|
||
6 years ago
|
public BaseDataPane(AttributeChangeListener listener) {
|
||
6 years ago
|
super(listener);
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 创建数据配置面板
|
||
|
*
|
||
|
* @return 数据配置面板
|
||
|
*/
|
||
|
protected abstract SingleDataPane createSingleDataPane();
|
||
|
}
|