averageStepOrder = (Double) (row[FieldList.stepOrder.fieldLocation]);
// in this step we only take the steps which are present in each of the workflows unless notOnlyCommonFlow is set to true
if (numberOfSteps.equals(totalNumberOfProc) || notOnlyCommonFlow) {
// for each step we create a new collection which is child of the collection workFlow created above
StepInformation newStep = new StepInformation(title, averageStepOrder);
workFlow.add(newStep);
// should probably use a different implementation of IGoobiProperty
// maybe StandardGoobiProperty
// for each field we create a property, which is part of the newStep collection