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.
22 lines
526 B
22 lines
526 B
package com.fr.design.chart; |
|
|
|
import com.fr.chart.chartattr.ChartCollection; |
|
import com.fr.chartx.attr.ChartProvider; |
|
|
|
public abstract class ChartCommonWizardPane extends ChartWizardPane { |
|
private static final long serialVersionUID = 2467967841657570498L; |
|
|
|
@Override |
|
public void populate(ChartCollection cc) { |
|
if (cc == null) { |
|
return; |
|
} |
|
|
|
populate(cc.getTheSelectedChart(ChartProvider.class)); |
|
} |
|
|
|
public abstract void populate(ChartProvider chart); |
|
|
|
public abstract void update(ChartProvider oldChart); |
|
|
|
} |