ProcessingElementInputDescriptor peInDescr1 = new ProcessingElementInputDescriptor(
"unionInput1");
ProcessingElementInputDescriptor peInDescr2 = new ProcessingElementInputDescriptor(
"unionInput2");
peInDescr1.setArray(false);
SType sTypeIn1 = new PrimitiveSType("any");
SType sTypeIn2 = new PrimitiveSType("Array");
DType dtypeIn1 = new SimpleDType("DummyInputDType1");
DType dtypeIn2 = new SimpleDType("DummyInputDType2");
peInDescr1.setSType(sTypeIn1);
peInDescr1.setDType(dtypeIn1);
peInDescr2.setSType(sTypeIn1);
peInDescr2.setDType(dtypeIn2);
inputs.add(peInDescr1);
inputs.add(peInDescr2);
ProcessingElementOutputDescriptor peOutDescr1 = new ProcessingElementOutputDescriptor(
"dummyOutput");
ProcessingElementOutputDescriptor peOutDescr2 = new ProcessingElementOutputDescriptor(
"dummyOutput2");
SType sTypeOut1 = new PrimitiveSType("DummyOutputST1");
SType sTypeOut2 = new PrimitiveSType("DummyOutputST2");
DType dtypeOut1 = new SimpleDType("DummyOutputDType1");
DType dtypeOut2 = new SimpleDType("DummyOutputDType2");
peOutDescr1.setSType(sTypeOut1);
peOutDescr1.setDType(dtypeOut1);
// peOutDescr2.setSType(sTypeOut2);