Map<Name, ModelDescription> context = Maps.create();
List<ModelDescription> analyzed = Lists.create();
for (CreateView view : sorted) {
LOG.info("ビューの構造を解析しています: {}", view.name);
ModelDescription model = transform(view, repository, context);
context.put(view.name, model);
if (model != null) {
analyzed.add(model);
}
}