Package com.asakusafw.modelgen.view

Examples of com.asakusafw.modelgen.view.ViewAnalyzer$View


            ModelMatcher filter) throws IOException, SQLException {

        List<ViewDefinition> definitions = collectViewDefinitions(filter);
        LOG.info("{}個のビュー定義を読み込みました", definitions.size());

        ViewAnalyzer analyzer = new ViewAnalyzer();
        for (ViewDefinition definition : definitions) {
            LOG.info("ビュー\"{}\"を解析しています", definition.name);
            CreateView tree = ViewParser.parse(definition);
            analyzer.add(Collections.singletonList(Constants.SOURCE_VIEW), tree);
        }

        List<ModelDescription> results = analyzer.analyze(repository);
        return results;
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.modelgen.view.ViewAnalyzer$View

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.