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

org.protege.editor.owl.ui.inference.ExplainInconsistentOntologyAction Maven / Gradle / Ivy

Go to download

OWL ontology editing infrastructure used by the Protege desktop application.

The newest version!
package org.protege.editor.owl.ui.inference;

import org.protege.editor.owl.ui.action.ProtegeOWLAction;
import org.protege.editor.owl.ui.explanation.io.InconsistentOntologyManager;

import java.awt.event.ActionEvent;

public class ExplainInconsistentOntologyAction extends ProtegeOWLAction {
	private static final long serialVersionUID = -3932851787552935976L;

	public void initialise() throws Exception {

	}
	
	public void actionPerformed(ActionEvent e) {
		InconsistentOntologyManager.get(getOWLModelManager()).explain();
	}
	
	public void dispose() throws Exception {

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy