protected BitSet labelIndices = null;
@Override
protected void makeOptions(Parameterization config) {
super.makeOptions(config);
IntListParameter labelIndicesP = new IntListParameter(LABEL_INDICES_ID, true);
labelIndices = new BitSet();
if(config.grab(labelIndicesP)) {
List<Integer> labelcols = labelIndicesP.getValue();
for(Integer idx : labelcols) {
labelIndices.set(idx);
}
}
}