Class FactTable

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

public class FactTable extends ModelComponentTable<Fact>
See Also:
  • Constructor Details

  • Method Details

    • add

      public Fact add(int index)
      Description copied from class: DictionaryComponentTable
      Add a new element to the table at the specified location and return the new element Must be abstract because generics cannot do "new T"
      Specified by:
      add in class DictionaryComponentTable<Fact>
      Returns:
      new table element
    • addFact

      public Fact addFact(FactType factType)
      Adds a new Fact corresponding to the given factType
      Parameters:
      factType - FactType to create Fact
      Returns:
      Fact
    • addFact

      public Fact addFact(FactType factType, List<DOID> initTypes)
    • addFact

      public Fact addFact(DOID factTypeId)
      Adds a new Fact corresponding to the given factTypeId
      Parameters:
      factTypeId - ID of the FactType to create Fact
      Returns:
      Fact
    • addFact

      public Fact addFact(DOID factTypeId, List<DOID> initTypes)