Class SimpleTestTable

All Implemented Interfaces:
Serializable, Cloneable, Iterable<SimpleTest>, Collection<SimpleTest>, List<SimpleTest>

public class SimpleTestTable extends RuleComponentTable<SimpleTest>
A SimpleTestTable contains SimpleTestExpression's which are combined with AND's or OR's. @see SimpleTestExpression.
See Also:
  • Constructor Details

  • Method Details

    • add

      public SimpleTest add(int index)
      Create a new SimpleTest and add it at the given index
      Specified by:
      add in class DictionaryComponentTable<SimpleTest>
      Returns:
      a new SimpleTest
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings)
      Description copied from class: DictionaryObject
      Validate the entire dictionary object and its decendants. Not incremental.
      Overrides:
      validate in class DictionaryComponentTable<SimpleTest>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also:
    • deleteUnreferencedAutoPatternsForPrototype

      public void deleteUnreferencedAutoPatternsForPrototype()
    • deleteUnreferencedAutoPatterns

      public void deleteUnreferencedAutoPatterns()
      Keeping this independent of validate, since this is not required for nested SimpleTestTables. Components containing a SimpleTestTable can invoke this method depending on whether its a top level table.
    • getRL

      public boolean getRL(StringBuilder sb, Map<Object,Object> properties)
      Internal Use Only. Allow decision table to getRL
    • flatten

      public List<SimpleTest> flatten()
    • getLocalVariables

      public List<ScopedVariable> getLocalVariables()
      Returns:
      List of all the local (not the in scope) variables in this SimpleTestTable
    • getRoot

      public SimpleTest getRoot()
    • getVisible

      public List<SimpleTest> getVisible()
      get the visible simple tests from this table
      Returns:
      list of visible simple tests
    • move

      public SimpleTest move(int index, boolean up)
      Shift the entry defined by index either up or down one entry in the table. The direction up==true will swap the entry with the one with index -1. The direction up==false will swap the entry with the one with index + 1.
      Overrides:
      move in class DictionaryComponentTable<SimpleTest>
      Parameters:
      index - Index of the Test to move in this table
      up - true for the Test is to be moved one entry upwards, false to be moved downwards
      Returns:
      the test moved