ProcessingElementInputDescriptor peInDescr1 = new ProcessingElementInputDescriptor(
"classifier");
ProcessingElementInputDescriptor peInDescr2 = new ProcessingElementInputDescriptor(
"data");
peInDescr1.setArray(false);
SType sTypeIn1 = new PrimitiveSType("classifierST");
SType sTypeIn2 = new PrimitiveSType("dataST");
DType dtypeIn1 = new SimpleDType("classifierDT");
DType dtypeIn2 = new SimpleDType("dataDT");
peInDescr1.setSType(sTypeIn1);
peInDescr1.setDType(dtypeIn1);
peInDescr2.setSType(sTypeIn2);
peInDescr2.setDType(dtypeIn2);
// inputs.add(peInDescr1);
// inputs.add(peInDescr2);
ProcessingElementOutputDescriptor peOutDescr1 = new ProcessingElementOutputDescriptor(
"result");
SType sTypeOut1 = new PrimitiveSType("result");
DType dtypeOut1 = new SimpleDType("DummyOutputDType1");
peOutDescr1.setSType(sTypeOut1);
peOutDescr1.setDType(dtypeOut1);
// peOutDescr2.setSType(sTypeOut2);
// peOutDescr2.setDType(dtypeOut2);