Uses of Class
org.semanticweb.owl.model.change.OntologyChange

Packages that use OntologyChange
org.semanticweb.owl.impl.model A basic implementation of the OWL API.  
org.semanticweb.owl.io.owl_rdf   
org.semanticweb.owl.model.change Change API for OWL Ontologies.  
org.semanticweb.owl.util   
uk.ac.man.cs.img.owl.inference   
uk.ac.man.cs.img.owl.inference.dl   
 

Uses of OntologyChange in org.semanticweb.owl.impl.model
 

Fields in org.semanticweb.owl.impl.model declared as OntologyChange
protected  OntologyChange OWLOntologyImpl.EntityAdder.cause
           
 

Methods in org.semanticweb.owl.impl.model with parameters of type OntologyChange
protected  void OWLOntologyImpl.filterEvent(OntologyChange event)
           
protected  void OWLOntologyImpl.handleEvent(OntologyChange event)
           
protected  void OWLOntologyImpl.notifyListeners(OntologyChange event)
           
 

Uses of OntologyChange in org.semanticweb.owl.io.owl_rdf
 

Methods in org.semanticweb.owl.io.owl_rdf with parameters of type OntologyChange
protected  void OWLConsumer.applyChange(OntologyChange oc)
           
 

Uses of OntologyChange in org.semanticweb.owl.model.change
 

Subclasses of OntologyChange in org.semanticweb.owl.model.change
 class AddAnnotationInstance
          AddAnnotationInstance.java Created: Fri May 09 15:39:12 2003
 class AddClassAxiom
          Add a class axiom.
 class AddDataPropertyInstance
          Add a superclass assertion to a class.
 class AddDataPropertyRange
          Add a range constraint to a DataProperty.
 class AddDataType
          Add a new Entity.
 class AddDomain
          Add a domain constraint to a property.
 class AddEntity
          Add a new Entity.
 class AddEnumeration
          Add an assertion that a class is equivalent to an enumeration.
 class AddEquivalentClass
          Add an equivalence to a class description.
 class AddImport
          Add an ontology import assertion to an ontology.
 class AddIndividualAxiom
          Add an individual axiom.
 class AddIndividualClass
          Add a superclass assertion to an individual.
 class AddInverse
          Add an inverse to an ObjectProperty.
 class AddObjectPropertyInstance
          Add a superclass assertion to a class.
 class AddObjectPropertyRange
          Add a range constraint to an object property.
 class AddPropertyAxiom
          Add a property axiom
 class AddSuperClass
          Add a superclass assertion to a class.
 class AddSuperProperty
          Add a superclass assertion to a class.
 class RemoveClassAxiom
          Remove a class axiom.
 class RemoveEntity
          Remove the entity from the ontology.
 class RemoveEnumeration
          Remove an assertion that a class is equivalent to an enumeration.
 class RemoveEquivalentClass
          Remove an equivalence from a class description.
 class RemoveSuperClass
          Remove a superclass assertion from a class.
 class SetDeprecated
          Set a Class or Property to be deprecated.
 class SetFunctional
          Set the functional flag on a Property.
 class SetInverseFunctional
          Set the inverseFunctionality flag on an ObjectProperty.
 class SetLogicalURI
          Set the logical URI on an ontology.
 class SetOneToOne
          Set the oneToOne flag on an ObjectProperty.
 class SetSymmetric
          Set the symmetric flag on an ObjectProperty.
 class SetTransitive
          Set the transitivity flag on an ObjectProperty.
 

Fields in org.semanticweb.owl.model.change declared as OntologyChange
protected  OntologyChange OntologyChange.cause
          The possible cause of the event
 

Methods in org.semanticweb.owl.model.change that return OntologyChange
 OntologyChange OntologyChange.getCause()
           
 

Methods in org.semanticweb.owl.model.change with parameters of type OntologyChange
 void OntologyChangeListener.ontologyChanged(OntologyChange evt)
           
 void OntologyChange.setCause(OntologyChange cause)
           
 

Constructors in org.semanticweb.owl.model.change with parameters of type OntologyChange
SetTransitive(OWLOntology ontology, OWLObjectProperty property, boolean transitive, OntologyChange cause)
           
SetSymmetric(OWLOntology ontology, OWLObjectProperty property, boolean symmetric, OntologyChange cause)
           
SetOneToOne(OWLOntology ontology, OWLObjectProperty property, boolean oneToOne, OntologyChange cause)
           
SetLogicalURI(OWLOntology ontology, URI uri, OntologyChange cause)
           
SetInverseFunctional(OWLOntology ontology, OWLObjectProperty property, boolean inverseFunctional, OntologyChange cause)
           
SetFunctional(OWLOntology ontology, OWLProperty property, boolean functional, OntologyChange cause)
           
SetDeprecated(OWLOntology ontology, OWLDeprecatableObject object, boolean deprecated, OntologyChange cause)
           
RemoveSuperClass(OWLOntology ontology, OWLClass owlClass, OWLDescription description, OntologyChange cause)
           
RemoveEquivalentClass(OWLOntology ontology, OWLClass owlClass, OWLDescription description, OntologyChange cause)
           
RemoveEnumeration(OWLOntology ontology, OWLClass owlClass, OWLEnumeration enumeration, OntologyChange cause)
           
RemoveEntity(OWLOntology ontology, OWLEntity entity, OntologyChange cause)
           
RemoveClassAxiom(OWLOntology ontology, OWLClassAxiom axiom, OntologyChange cause)
           
OntologyChange(OWLOntology ontology, OntologyChange cause)
           
AddSuperProperty(OWLOntology ontology, OWLProperty property, OWLProperty superProperty, OntologyChange cause)
           
AddSuperClass(OWLOntology ontology, OWLClass owlClass, OWLDescription description, OntologyChange cause)
           
AddPropertyAxiom(OWLOntology ontology, OWLPropertyAxiom axiom, OntologyChange cause)
           
AddObjectPropertyRange(OWLOntology ontology, OWLObjectProperty property, OWLDescription range, OntologyChange cause)
           
AddObjectPropertyInstance(OWLOntology ontology, OWLIndividual subject, OWLObjectProperty property, OWLIndividual object, OntologyChange cause)
           
AddInverse(OWLOntology ontology, OWLObjectProperty property, OWLObjectProperty inverse, OntologyChange cause)
           
AddIndividualClass(OWLOntology ontology, OWLIndividual individual, OWLDescription description, OntologyChange cause)
           
AddIndividualAxiom(OWLOntology ontology, OWLIndividualAxiom axiom, OntologyChange cause)
           
AddImport(OWLOntology ontology, OWLOntology importOntology, OntologyChange cause)
           
AddEquivalentClass(OWLOntology ontology, OWLClass owlClass, OWLDescription description, OntologyChange cause)
           
AddEnumeration(OWLOntology ontology, OWLClass owlClass, OWLEnumeration enumeration, OntologyChange cause)
           
AddEntity(OWLOntology ontology, OWLEntity entity, OntologyChange cause)
           
AddDomain(OWLOntology ontology, OWLProperty property, OWLDescription domain, OntologyChange cause)
           
AddDataType(OWLOntology ontology, OWLDataType datatype, OntologyChange cause)
           
AddDataPropertyRange(OWLOntology ontology, OWLDataProperty property, OWLDataRange range, OntologyChange cause)
           
AddDataPropertyInstance(OWLOntology ontology, OWLIndividual subject, OWLDataProperty property, OWLDataValue object, OntologyChange cause)
           
AddClassAxiom(OWLOntology ontology, OWLClassAxiom axiom, OntologyChange cause)
           
AddAnnotationInstance(OWLOntology ontology, OWLObject subject, OWLAnnotationProperty property, Object content, OntologyChange cause)
           
 

Uses of OntologyChange in org.semanticweb.owl.util
 

Methods in org.semanticweb.owl.util with parameters of type OntologyChange
protected  void OntologyReplicator.applyChange(OntologyChange changeEvent)
          Adds an event to be processed.
 

Uses of OntologyChange in uk.ac.man.cs.img.owl.inference
 

Methods in uk.ac.man.cs.img.owl.inference with parameters of type OntologyChange
 void NonInferencingTaxonomyReasoner.ontologyChanged(OntologyChange event)
           
 

Uses of OntologyChange in uk.ac.man.cs.img.owl.inference.dl
 

Methods in uk.ac.man.cs.img.owl.inference.dl with parameters of type OntologyChange
 void SimpleOWLReasoner.ontologyChanged(OntologyChange event)
           
 



WonderWeb