63 |
implements DatasetSelectionListener { |
implements DatasetSelectionListener { |
64 |
|
|
65 |
/** Holds the chart datset to keep synchronized with the layer selection model. */ |
/** Holds the chart datset to keep synchronized with the layer selection model. */ |
66 |
protected FeatureDatasetSelectionModel<?> datasetSelModel = null; |
protected FeatureDatasetSelectionModel<?,?,?> datasetSelModel = null; |
67 |
|
|
68 |
/** |
/** |
69 |
* Creates a new synchronizer. |
* Creates a new synchronizer. |
74 |
* dataset selection model to keep synchronized with the layer |
* dataset selection model to keep synchronized with the layer |
75 |
* selection model |
* selection model |
76 |
*/ |
*/ |
77 |
public ChartSelectionSynchronizer(StyledFeatureLayerSelectionModel layerSelModel, FeatureDatasetSelectionModel<?> datasetSelModel) { |
public ChartSelectionSynchronizer(StyledFeatureLayerSelectionModel layerSelModel, FeatureDatasetSelectionModel<?,?,?> datasetSelModel) { |
78 |
super(layerSelModel); |
super(layerSelModel); |
79 |
this.datasetSelModel = datasetSelModel; |
this.datasetSelModel = datasetSelModel; |
80 |
} |
} |