Package com.asakusafw.compiler.flow.ExternalIoDescriptionProcessor

Examples of com.asakusafw.compiler.flow.ExternalIoDescriptionProcessor.Input


        assert processor != null;
        assert importGroup != null;
        assert exportGroup != null;
        List<Input> inputs = Lists.create();
        for (Import model : importGroup) {
            inputs.add(new Input(model.getDescription(), model.getOutputFormatType()));
        }
        List<Output> outputs = Lists.create();
        for (Export model : exportGroup) {
            List<SourceInfo> sources = Lists.create();
            for (Source source : model.getResolvedSources()) {
View Full Code Here

TOP

Related Classes of com.asakusafw.compiler.flow.ExternalIoDescriptionProcessor.Input

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.