Class ChangeDetails

java.lang.Object
org.semanticweb.owlapi.model.ChangeDetails

public class ChangeDetails extends Object
A class to hold detailed results on a set of changes. changeEffect has the overall result of the transaction (changes can have been applied successfully, they can have failed and been rolled back, or all changes might have been no-operation). enactedChanges has all the changes that have been applied successfully.
Author:
ignazio
  • Constructor Details

    • ChangeDetails

      public ChangeDetails(ChangeApplied changeEffect, List<? extends OWLOntologyChange> enactedChanges)
      Parameters:
      changeEffect - the result of a change
      enactedChanges - the list of changes applied successfully
  • Method Details

    • getChangeEffect

      public ChangeApplied getChangeEffect()
      Returns:
      the change effect
    • getEnactedChanges

      public List<? extends OWLOntologyChange> getEnactedChanges()
      Returns:
      the enacted changes