List<String> results = new ArrayList<String>();
Export exporter = tester.getExporter(info, name);
for (Location location : exporter.getResolvedLocations()) {
ModelInput<Simple> input = tester.openInput(Simple.class, location);
try {
Simple model = new Simple();
while (input.readTo(model)) {
results.add(model.getValueAsString());
}
} finally {
input.close();
}
}