Klasse TableExaminer

java.lang.Object
ch.nolix.system.objectdata.modelexaminer.TableExaminer
Alle implementierten Schnittstellen:
ITableExaminer

public final class TableExaminer extends Object implements ITableExaminer
Version:
2024-12-29
Autor:
Silvan Wyss
  • Konstruktordetails

    • TableExaminer

      public TableExaminer()
  • Methodendetails

    • allNewAndEditedMandatoryFieldsAreSet

      public boolean allNewAndEditedMandatoryFieldsAreSet(ITable<?> table)
      Angegeben von:
      allNewAndEditedMandatoryFieldsAreSet in Schnittstelle ITableExaminer
      Parameter:
      table -
      Gibt zurück:
      true if all new and edited mandatory fields of the IEntitys of the given table are set, false otherwise.
    • canInsertEntity

      public boolean canInsertEntity(ITable<?> table)
      Angegeben von:
      canInsertEntity in Schnittstelle ITableExaminer
      Parameter:
      table -
      Gibt zurück:
      true if the given table can insert a IEntity, false otherwise.
    • canInsertGivenEntity

      public boolean canInsertGivenEntity(ITable<?> table, IEntity entity)
      Angegeben von:
      canInsertGivenEntity in Schnittstelle ITableExaminer
      Parameter:
      table -
      entity -
      Gibt zurück:
      true if the given table can insert the given entity, false otherwise.
    • containsEntityWithGivenIdInLocalData

      public boolean containsEntityWithGivenIdInLocalData(ITable<?> table, String id)
      Angegeben von:
      containsEntityWithGivenIdInLocalData in Schnittstelle ITableExaminer
      Parameter:
      table -
      id -
      Gibt zurück:
      true if the given table contains a IEntity with the given id in the local data, false otherwise.
    • hasInsertedGivenEntityInLocalData

      public boolean hasInsertedGivenEntityInLocalData(ITable<?> table, IEntity entity)
      Angegeben von:
      hasInsertedGivenEntityInLocalData in Schnittstelle ITableExaminer
      Parameter:
      table -
      entity -
      Gibt zurück:
      true if the the given table has inserted the given entity in the local data, false otherwise.