Interface IDecisionTree

All Superinterfaces:
Serializable
All Known Implementing Classes:
DecisionTree

public interface IDecisionTree extends Serializable
Interface for a decision tree.
Since:
5.0
Author:
O. Kerpershoek, F. van der Meer
  • Method Summary

    Modifier and Type
    Method
    Description
    This method returns the description of the decision tree that should be shown for the decision tree when it is selected.
    This method returns the name of the decision tree.
    This method returns the roles required to access the decision tree.
    This method returns an array of symptoms describing the contents of the decision tree.
    boolean
    This method returns if the decision tree will be exposed as a webservice.
  • Method Details

    • getName

      String getName()
      This method returns the name of the decision tree.
      Returns:
      the name of the decision tree.
    • isExposedAsWebservice

      boolean isExposedAsWebservice()
      This method returns if the decision tree will be exposed as a webservice.
      Returns:
      the boolean indicating if the decision tree will be exposed.
    • getRoles

      String[] getRoles()
      This method returns the roles required to access the decision tree.
      Returns:
      the roles required to access the decision tree.
    • getDisplayText

      IMultilingualText getDisplayText()
      This method returns the description of the decision tree that should be shown for the decision tree when it is selected.
      Returns:
      The text that should be shown when selecting a decision tree.
    • getSymptoms

      ISymptom[] getSymptoms()
      This method returns an array of symptoms describing the contents of the decision tree.
      Returns:
      An array of symptoms describing the contents of the decision tree.