Package com.asakusafw.compiler.flow.external

Examples of com.asakusafw.compiler.flow.external.ExternalIoAnalyzer


        return result;
    }

    private void validate(FlowGraph graph) throws IOException {
        assert graph != null;
        ExternalIoAnalyzer analyzer = new ExternalIoAnalyzer(environment);
        if (analyzer.validate(graph) == false) {
            throw new IOException(MessageFormat.format(
                    "フローの入出力が正しくないため、コンパイルを中止します ({0})",
                    environment.getErrorMessage()));
        }
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.external.ExternalIoAnalyzer

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.