*/
public class Main {
public static void main(String[] args) throws IOException, SAXException {
ModelBuilder modelBuilder = new ModelBuilder("META-INF/org/smooks/model/descriptor.properties", false);
Model<SmooksModel> model;
SmooksModel smooksModel;
// Read an instance of the model...
model = modelBuilder.readModel(new FileReader("smooks-config.xml"), SmooksModel.class);
smooksModel = model.getModelRoot();
// Make modifications to the smooksModel instance etc....
List<Bean> beans = smooksModel.getBeans();
for(Bean bean : beans) {