Class FactBinding<T extends FactBinding>

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>, UnnamedComponent, VariableScope
Direct Known Subclasses:
Pattern, SimpleTest

public abstract class FactBinding<T extends FactBinding> extends UnnamedRuleComponent<T>
See Also:
  • Method Details

    • hasFactType

      public abstract boolean hasFactType()
    • getFactTypeProperty

      public AliasRefProperty getFactTypeProperty()
      Get FactType Property.
      Returns:
      ChoosableProperty
    • getFactType

      public String getFactType()
      Get the alias of the fact type.
    • setFactType

      public void setFactType(String factType)
      Set the alias of the fact type.
    • getFactTypeID

      public DOID getFactTypeID()
      Get the ID of the fact type.
    • setFactTypeID

      public void setFactTypeID(DOID factTypeID)
      Set the ID of the fact type.
    • getFactTypeOptions

      public String[] getFactTypeOptions()
      get possible fact types to choose from
      Returns:
      String[] of fact type aliases
    • getFactTypeSelected

      public int getFactTypeSelected()
      get index of fact type selected from option list
      Returns:
      index
    • getFactPathProperty

      public FactBinding<T>.FactPathProperty getFactPathProperty()
      Get FactPath Property.
      Returns:
      FactPathProperty
    • getFactPath

      public String getFactPath()
      Get the fact path. For use when Form is FORM_FACT_TYPE or FORM_FACT_PATH
    • setFactPath

      public void setFactPath(String factPath)
      Set the fact path. For use when Form is FORM_FACT_PATH
    • getFactPathIDs

      public DOID[] getFactPathIDs()
      Get the IDs of the fact path. For use when Form is FORM_FACT_TYPE or FORM_FACT_PATH
    • setFactPathIDs

      public void setFactPathIDs(DOID[] factPathIDs)
      Set the IDs of the fact path. For use when Form is FORM_FACT_PATH
    • getFactPathOptions

      public String[] getFactPathOptions()
      get possible fact paths to choose from
      Returns:
      String[] of fact paths
    • getVariableProperty

      public FactBinding.VariableProperty getVariableProperty()
      Get Variable Property.
      Returns:
      String SettableProperty
    • getVariable

      public String getVariable()
    • getVariable

      public String getVariable(boolean translate)
    • setVariable

      public void setVariable(String variable)
    • getStoredPropertyNames

      public String[] getStoredPropertyNames()
      Overrides:
      getStoredPropertyNames in class UnnamedRuleComponent<T extends FactBinding>
      Returns:
      Array of property names which are persisted in the order in which they appear in the schema.
    • getPropertyNames

      public String[] getPropertyNames()
      Specified by:
      getPropertyNames in interface UnnamedComponent
      Overrides:
      getPropertyNames in class UnnamedRuleComponent<T extends FactBinding>
      Returns:
      Array of property names available.
    • get

      public Object get(Object key)
      Description copied from class: DictionaryComponent
      Generic property getter.

      Please see the specific bean class for a list of properties.

      Specified by:
      get in interface Map<String,Object>
      Overrides:
      get in class UnnamedRuleComponent<T extends FactBinding>
      Parameters:
      key - a String containing the property name to be fetched.
      Returns:
      the value corresponding to the key: a String, String[], DictionaryComponent, DictionaryComponentTable, etc.
    • put

      public Object put(String key, Object value)
      Description copied from class: DictionaryComponent
      Generic property setter. Throws runtime exceptions for incorrect arguments. Please see the specific bean class for a list of properties, their types, and permissible values.

      A put() with either null key or null value throws a NullPointerException.

      A put() with a key that is not a String throws a ClassCastException

      A put() of a value that is not of the correct type for the key throws a ClassCastException.

      Bean properties which have no set() method are read only, and cannot be modified using the put(). Attempting to do so throws a runtime IllegalArgumentException. PROP_ID, and PROP_*_SELECTED are always read only.

      Specified by:
      put in interface Map<String,Object>
      Overrides:
      put in class UnnamedRuleComponent<T extends FactBinding>
      Parameters:
      key - the key of the property to set
      value - the value of the named property to set
      Returns:
      the previous value of the property
    • prefix

      public static boolean prefix(DOID[] shorter, DOID[] longer)
    • isChildInTree

      public boolean isChildInTree()
    • getVariableRL

      public Object getVariableRL()
    • setVariableRL

      public void setVariableRL(String name)
    • setVariableRL

      public void setVariableRL(int varNum)
    • getKind

      public Choice.Kind getKind()
    • validate

      public void validate(List<SDKException> errors, List<SDKWarning> warnings)
      Description copied from class: DictionaryComponent
      Validate and append errors and warnings.
      Overrides:
      validate in class DictionaryComponent<T extends FactBinding>
      Parameters:
      errors - a List of error exceptions to append to.
      warnings - a List of warning exceptions to append to.
      See Also: