Interface ICaseVisitor

All Known Implementing Classes:
CaseVisitor, ReportingCaseVisitor

public interface ICaseVisitor
This interface defines the method which can be used to register cases.
Since:
6.2
Author:
O. Kerpershoek, F. van der Meer
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    addCase(ICaseDS datasource)
    This method should be invoked for each case that needs to be added to the casebase.
    void
    updateCase(String caseName, ICaseDS datasource)
     
  • Method Details

    • addCase

      void addCase(ICaseDS datasource)
      This method should be invoked for each case that needs to be added to the casebase.
      Parameters:
      datasource - Data source providing the case data.
      Throws:
      InitializationException - When the initialization of the case fails.
    • updateCase

      void updateCase(String caseName, ICaseDS datasource)