Class CalcStepRecord

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      static class  CalcStepRecord.StepType
      Calculation step type. 1.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      String content
      Calculation step content - so what is really happening in this step
      String description
      Calculation step description - can be ana argument name, function name and or an expression string
      boolean firstInGroup
      True if this is a first step in a given group.
      boolean lastInGroup
      True if this is a last step in a given group.
      int numberGroup
      If an expression makes a reference to a dependent argument or a user function then the calculation process will be done based on the calculation tree, where each group will be a marker of a particular (different) leaf of this tree.
      int numberGroupWithin
      Marker of a step in a process of calculation of a given expression pointed by a particular leaf in a calculation tree.
      CalcStepRecord.StepType type
      Calculation step type
    • Constructor Summary

      Constructors 
      Constructor Description
      CalcStepRecord()  
    • Field Detail

      • numberGroup

        public int numberGroup
        If an expression makes a reference to a dependent argument or a user function then the calculation process will be done based on the calculation tree, where each group will be a marker of a particular (different) leaf of this tree.
      • numberGroupWithin

        public int numberGroupWithin
        Marker of a step in a process of calculation of a given expression pointed by a particular leaf in a calculation tree.
      • description

        public String description
        Calculation step description - can be ana argument name, function name and or an expression string
      • content

        public String content
        Calculation step content - so what is really happening in this step
      • firstInGroup

        public boolean firstInGroup
        True if this is a first step in a given group.
      • lastInGroup

        public boolean lastInGroup
        True if this is a last step in a given group.
    • Constructor Detail

      • CalcStepRecord

        public CalcStepRecord()