Package com.asakusafw.compiler.flow.visualizer

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


    }

    private void processFlowGraph(String flowId, FlowGraph graph) throws IOException {
        assert flowId != null;
        assert graph != null;
        VisualGraph model = VisualAnalyzer.convertFlowGraph(graph);
        emit(MessageFormat.format(PATH_FLOW_GRAPH, flowId), false, model);
    }
View Full Code Here


    }

    private void processStageGraph(String flowId, StageGraph graph) throws IOException {
        assert flowId != null;
        assert graph != null;
        VisualGraph model = VisualAnalyzer.convertStageGraph(graph);
        emit(MessageFormat.format(PATH_STAGE_GRAPH, flowId), false, model);
    }
View Full Code Here

    }

    private void processStageBlock(String flowId, StageBlock stage) throws IOException {
        assert flowId != null;
        assert stage != null;
        VisualGraph model = VisualAnalyzer.convertStageBlock(stage);
        emit(MessageFormat.format(PATH_STAGE_BLOCK, flowId, String.valueOf(stage.getStageNumber())), true, model);
    }
View Full Code Here

TOP

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

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.