public GenerateCleaningRulesCommand(String id, String worksheetId,
String hNodeId, String examples, String cellIDs, String selectionId) {
super(id, worksheetId, selectionId);
this.hNodeId = hNodeId;
this.nodeIds = parseNodeIds(cellIDs);
ConfigParameters cfg = new ConfigParameters();
cfg.initeParameters();
DataCollection.config = cfg.getString();
this.examples = parseExample(examples);
}