Class ModelComponent<T extends ModelComponent>

All Implemented Interfaces:
Serializable, Cloneable, Map<String,Object>
Direct Known Subclasses:
Bucket, DecisionFunction, DecisionFunctionFact, Method, TypedComponent, UnnamedModelComponent, VerbalizedModelComponent

public abstract class ModelComponent<T extends ModelComponent> extends DictionaryComponent<T>
Base class for all elements in a data model.
See Also:
  • Constructor Details

  • Method Details

    • getCreationUpdateNumber

      public int getCreationUpdateNumber()
      Every element in the data model has an immutable creation update number. Elements validated with a lower update number cannot depend on this element of the data model.
      Returns:
      the dictionary update number when this component was created
    • getVisibleProperty

      public SettableProperty<Boolean> getVisibleProperty()
      Get Visible Property.
      Returns:
      Boolean SettableProperty
    • isVisible

      public boolean isVisible()
      Every element is visible by default, could be set to invisible. This attribute if for GUI display
      Returns:
      true if the element is visible
    • setVisible

      public void setVisible(boolean visible)
      Set visibility of the element
      Parameters:
      visible - visibility of the element
    • getParent

      public ModelComponent getParent()
      Get parent ModelComponent Object
      Returns:
      The parent ModelComponent Object
    • getParentTable

      public ModelComponentTable<T> getParentTable()
      Get parent ModelComponentTable Object
      Returns:
      The parent ModelComponentTable Object
    • getPropertyNames

      public String[] getPropertyNames()
      Overrides:
      getPropertyNames in class DictionaryComponent<T extends ModelComponent>
      Returns:
      Array of property names available.
    • getStoredPropertyNames

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