"Start file cannot be processed: widget model is null");
//
// Set the HTML processing engine to use to modify the Widget start files
// and pass it a reference to a FileReader it can use to read the start file
//
IHtmlProcessor engine = new HtmlCleaner();
engine.setReader(new FileReader(startFile));
//
// Process Features
//
addFlattenedFeatures(startFile.getParentFile(), engine, model);
FileWriter writer = new FileWriter(startFile);
engine.process(writer);
}