Interface BatchFeature

    • Method Detail

      • attach

        void attach​(java.lang.String study)
        Attaches a batch job to a study, which includes assigning it to the study.
        Parameters:
        study - Study tag.
      • continueRun

        void continueRun()
        Continues the batch job.
      • create

        BatchFeature create​(java.lang.String tag,
                            java.lang.String oper)
        Create a batch feature.
        Parameters:
        tag - Feature tag.
        oper - Type of feature.
        Returns:
        Created batch feature.
      • detach

        void detach()
        Detaches the batch job from its study.
      • feature

        BatchFeatureList feature()
        Returns the tasks of a batch job.
        Returns:
        List of tasks.
      • feature

        BatchFeature feature​(java.lang.String tag)
        Returns a task.
        Parameters:
        tag - Task tag.
        Returns:
        Task.
      • getErrorMessage

        java.lang.String getErrorMessage()
        Returns error message.
        Returns:
        Error message.
      • getInformationMessage

        java.lang.String getInformationMessage()
        Returns information message.
        Returns:
        Information message.
      • getInitialValue

        void getInitialValue()
        Computes initial value for the batch job.
      • getWarningMessage

        java.lang.String getWarningMessage()
        Returns warning message.
        Returns:
        Warning message.
      • hasError

        boolean hasError()
        Check for error in batch feature.
        Returns:
        true if error.
      • hasInformation

        boolean hasInformation()
        Check for information in batch feature.
        Returns:
        true if information.
      • hasProblems

        boolean hasProblems()
        Check for problem in batch feature.
        Returns:
        true if problem.
      • hasProblemsOrInformation

        boolean hasProblemsOrInformation()
        Check for problems or information nodes in batch feature.
        Returns:
        true if problems or information nodes.
      • hasWarning

        boolean hasWarning()
        Check for warning in batch feature.
        Returns:
        true if warning.
      • isAttached

        boolean isAttached()
        Test if batch job is attached to a study.
        Returns:
        true if attached.
      • problem

        ProblemList problem()
        Returns batch problem feature list.
        Returns:
        List of batch problems.
      • problem

        ProblemFeature problem​(java.lang.String fname)
        Returns batch problem feature.
        Parameters:
        fname - Batch problem feature tag.
        Returns:
        Batch problem feature.
      • run

        void run()
        Runs the batch job.
      • run

        void run​(java.lang.String actionType)
        Runs the batch job.
        Parameters:
        actionType - action type.
      • run

        void run​(boolean createPlots)
        Runs the batch job and creates plots.
        Parameters:
        createPlots - Create plots.
      • study

        java.lang.String study()
        Returns the study of the batch job.
        Returns:
        Study tag.
      • study

        void study​(java.lang.String tag)
        Assigns a batch job to a study.
        Parameters:
        tag - Study tag.