Hello there,
im using the multiply operator in my java application.
to add a output port i wrote a small helper method
private static void addport(String input, String output, Operator operator)
throws OperatorException {
InputPort inputPort = operator.getInputPorts().getPortByName(input);
OutputPort outputPort = operator.getOutputPorts().createPort(output);
outputPort.deliver(inputPort.getData());
}
now im asking me if im using it the right way, because i think that ive done just a workaround.
greetings
simon