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.
32 lines
654 B
32 lines
654 B
package com.fanruan.api.design.chart; |
|
|
|
import com.fanruan.api.report.chart.BaseChartWithData; |
|
import com.fr.design.chartx.impl.AbstractOtherPane; |
|
|
|
import javax.swing.JPanel; |
|
|
|
/** |
|
* @author Bjorn |
|
* @version 10.0 |
|
* Created by Bjorn on 2019-09-17 |
|
*/ |
|
public abstract class BaseOtherPane<T extends BaseChartWithData> extends AbstractOtherPane<T> { |
|
|
|
/** |
|
* 创建内容面板 |
|
* |
|
* @return 面板 |
|
*/ |
|
@Override |
|
protected abstract JPanel createContentPane(); |
|
|
|
/** |
|
* 界面标题 |
|
* |
|
* @return 标题 |
|
*/ |
|
@Override |
|
public String title4PopupWindow() { |
|
return super.title4PopupWindow(); |
|
} |
|
}
|
|
|