All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.protege.editor.owl.model.io.IOListener Maven / Gradle / Ivy

Go to download

OWL ontology editing infrastructure used by the Protege desktop application.

There is a newer version: 5.6.4-beta3
Show newest version
package org.protege.editor.owl.model.io;


/**
 * Author: Matthew Horridge
The University Of Manchester
Information Management Group
Date: * 16-Sep-2008

* * A listener that is informed of load and save events on an * OWLModel. */ public abstract class IOListener { public abstract void beforeSave(IOListenerEvent event); public abstract void afterSave(IOListenerEvent event); public abstract void beforeLoad(IOListenerEvent event); public abstract void afterLoad(IOListenerEvent event); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy