}
@Override
public StepIOMetaInterface getStepIOMeta() {
StepIOMetaInterface ioMeta = new StepIOMeta(true, true, true, false, !infoSteps.isEmpty(), !targetSteps.isEmpty());
for (RoleStepMeta step : infoSteps) {
ioMeta.addStream(new Stream(StreamType.INFO, step.getStepMeta(), step.getRoleName(), StreamIcon.INFO, null));
}
for (RoleStepMeta step : targetSteps) {
ioMeta.addStream(new Stream(StreamType.TARGET, step.getStepMeta(), step.getRoleName(), StreamIcon.TARGET, null));
}
return ioMeta;
}