Package com.asakusafw.compiler.flow.visualizer

Examples of com.asakusafw.compiler.flow.visualizer.FlowVisualizer


    }

    private void visualize(FlowGraph flowGraph, StageGraph stageGraph) throws IOException {
        assert flowGraph != null;
        assert stageGraph != null;
        FlowVisualizer visualizer = new FlowVisualizer(environment);
        visualizer.visualize(flowGraph);
        visualizer.visualize(stageGraph);
        for (StageBlock stage : stageGraph.getStages()) {
            visualizer.visualize(stage);
        }
    }
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.visualizer.FlowVisualizer

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.