Package org.goobi.production.flow.statistics

Examples of org.goobi.production.flow.statistics.StepInformation


      numberOfSteps = (Long) (row[FieldList.stepCount.fieldLocation]);
      averageStepOrder = (Double) (row[FieldList.stepOrder.fieldLocation]);

      // in this step we only take the steps which are present in each of the workflows
      if (numberOfSteps.equals(totalNumberOfProc)) {
        StepInformation newStep = new StepInformation(title, averageStepOrder);
        newStep.setNumberOfTotalImages(totalNumberOfImages.intValue());
        newStep.setNumberOfTotalSteps(totalNumberOfProc.intValue());
        workFlow.add(newStep);
      }
    }

    Criteria critStepDone = session.createCriteria(Schritt.class, "step");
View Full Code Here


      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
View Full Code Here

TOP

Related Classes of org.goobi.production.flow.statistics.StepInformation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.