Package com.asakusafw.dmdl.thundergate.model

Examples of com.asakusafw.dmdl.thundergate.model.ModelDescription


                            target.name,
                            dependency);
                    return false;
                }
            } else {
                ModelDescription resolved = repository.find(dependency.token);
                if (resolved == null) {
                    LOG.error("{}は依存先の{}が見つからないため、変換に失敗しました",
                            target.name,
                            dependency);
                    success = false;
View Full Code Here


        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);
            }
        }
View Full Code Here

TOP

Related Classes of com.asakusafw.dmdl.thundergate.model.ModelDescription

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.