Examples of addOutput()


Examples of LONI.tree.GraphObject.DataModule.addOutput()

       
        // Create and fill in file types for format
        output.getFormat().getFileTypes().addFileType(new FileType(TavernaType, "", ""))
       
        output.getValues().addValue(new Value("hi", "there"));
        dataModule.addOutput(output);
        break;
      }
    }
    return dataModule;
  }
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

        builder.addInput(
                a.getParameterDocument(0),
                a.getParameterName(0),
                a.getParameterType(0).getType(),
                0);
        builder.addOutput(
                "結果",
                annotation.outputPort(),
                a.getParameterType(0).getType(),
                a.getParameterName(0),
                0);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

                a.getParameterDocument(1),
                "param",
                a.getParameterType(1).getType(),
                1);

        builder.addOutput(
                a.getReturnDocument(),
                "out",
                a.getReturnType().getType(),
                null,
                null);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

                a.getParameterDocument(1),
                a.getParameterName(1),
                a.getParameterType(1).getType(),
                1,
                transactionKey);
        builder.addOutput(
                a.getReturnDocument(),
                annotation.joinedPort(),
                a.getReturnType().getType(),
                null,
                null);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

                a.getReturnDocument(),
                annotation.joinedPort(),
                a.getReturnType().getType(),
                null,
                null);
        builder.addOutput(
                "結合に失敗したデータ",
                annotation.missedPort(),
                a.getParameterType(1).getType(),
                a.getParameterName(1),
                null);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

                a.getParameterName(0),
                a.getParameterType(0).getType(),
                0);

        for (VariableElement var : constants) {
            builder.addOutput(
                    a.getDocument(var),
                    JavaName.of(var.getSimpleName().toString()).toMemberName(),
                    a.getParameterType(0).getType(),
                    a.getParameterName(0),
                    null);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

            TypeMirror outputTypeMirror = outputType.getType();
            String found = builder.findInput(outputTypeMirror);
            if (found == null && outputType.isProjectiveModel()) {
                a.error("出力型{0}に対する入力が見つかりません", outputTypeMirror);
            }
            builder.addOutput(
                    a.getParameterDocument(i),
                    a.getParameterName(i),
                    outputTypeMirror,
                    found,
                    i);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

        builder.addInput(
                a.getParameterDocument(0),
                a.getParameterName(0),
                a.getParameterType(0).getType(),
                0);
        builder.addOutput(
                "入力された内容",
                annotation.outputPort(),
                a.getParameterType(0).getType(),
                a.getParameterName(0),
                0);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

            TypeMirror outputTypeMirror = outputType.getType();
            String found = builder.findInput(outputTypeMirror);
            if (found == null && outputType.isProjectiveModel()) {
                a.error("出力型{0}に対する入力が見つかりません", outputTypeMirror);
            }
            builder.addOutput(
                    a.getParameterDocument(i),
                    a.getParameterName(i),
                    outputTypeMirror,
                    found,
                    i);
View Full Code Here

Examples of com.asakusafw.compiler.operator.OperatorMethodDescriptor.Builder.addOutput()

                a.getParameterDocument(1),
                a.getParameterName(1),
                a.getParameterType(1).getType(),
                1,
                transactionKey);
        builder.addOutput(
                a.getParameterName(0) + "の引き当てに成功した" + a.getParameterName(1),
                annotation.foundPort(),
                a.getParameterType(1).getType(),
                a.getParameterName(1),
                null);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.