Browse Source

修改拼写错误

master
mengao 7 years ago
parent
commit
6819c1c00d
  1. 6
      designer_chart/src/com/fr/design/mainframe/chart/ChartsConfigPane.java

6
designer_chart/src/com/fr/design/mainframe/chart/ChartsConfigPane.java

@ -14,11 +14,11 @@ public abstract class ChartsConfigPane <T extends Charts> extends AbstractChartA
public final static String CHART_STYLE_TITLE = Inter.getLocText("Chart-Style_Name"); public final static String CHART_STYLE_TITLE = Inter.getLocText("Chart-Style_Name");
public abstract Class<? extends Charts> accptType(); public abstract Class<? extends Charts> acceptType();
@Override @Override
public void populate(ChartCollection collection) { public void populate(ChartCollection collection) {
if (StableUtils.classInstanceOf(collection.getSelectedChart().getClass(),accptType())) { if (StableUtils.classInstanceOf(collection.getSelectedChart().getClass(),acceptType())) {
populate(collection, (T)collection.getSelectedChart()); populate(collection, (T)collection.getSelectedChart());
} }
} }
@ -27,7 +27,7 @@ public abstract class ChartsConfigPane <T extends Charts> extends AbstractChartA
@Override @Override
public void update(ChartCollection collection) { public void update(ChartCollection collection) {
if (StableUtils.classInstanceOf(collection.getSelectedChart().getClass(),accptType())) { if (StableUtils.classInstanceOf(collection.getSelectedChart().getClass(),acceptType())) {
update(collection, (T)collection.getSelectedChart()); update(collection, (T)collection.getSelectedChart());
} }
} }

Loading…
Cancel
Save