PrintfFormat format = new PrintfFormat("%-" + longest + "s");
for(SchemaDefinition sd: allSchemasByID.values()){
int end = sd.getSchemaBaseID() + sd.getSchemaIDRange();
System.out.println(format.sprintf(sd.getName()) + " " + sd.getSchemaBaseID() + " - " + end);
SchemaPage.dumpSchemaPage(outdir, manager, sd, summarizer);
}
} catch (ResultException e) {