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