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.
13 lines
280 B
13 lines
280 B
7 years ago
|
package com.fr.extended.chart;
|
||
|
|
||
7 years ago
|
import com.fr.van.chart.designer.AbstractVanChartScrollPane;
|
||
7 years ago
|
|
||
|
/**
|
||
|
* Created by shine on 2018/3/24.
|
||
|
*/
|
||
|
public abstract class ExtendedScrollPane<T> extends AbstractVanChartScrollPane<T> {
|
||
|
|
||
|
@Override
|
||
|
public abstract void updateBean(T ob);
|
||
|
}
|