Package com.asakusafw.vocabulary.operator

Examples of com.asakusafw.vocabulary.operator.CoGroup


            }
        }
        if (a.hasError()) {
            return null;
        }
        CoGroup annotation = context.element.getAnnotation(CoGroup.class);
        if (annotation == null) {
            a.error("注釈の解釈に失敗しました");
            return null;
        }

        Builder builder = new Builder(getTargetAnnotationType(), context);
        builder.addAttribute(FlowBoundary.SHUFFLE);
        builder.addAttribute(a.getObservationCount());
        builder.addAttribute(annotation.inputBuffer());
        builder.setDocumentation(a.getExecutableDocument());
        for (int i = 0; i < startResults; i++) {
            builder.addInput(
                    a.getParameterDocument(i),
                    a.getParameterName(i),
View Full Code Here

TOP

Related Classes of com.asakusafw.vocabulary.operator.CoGroup

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.