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

org.protege.editor.owl.ui.frame.individual.OWLIndividualFrame 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.frame.individual;

import org.protege.editor.owl.OWLEditorKit;
import org.protege.editor.owl.ui.frame.AbstractOWLFrame;
import org.semanticweb.owlapi.model.OWLNamedIndividual;


/**
 * Author: Matthew Horridge
* The University Of Manchester
* Bio-Health Informatics Group
* Date: 29-Jan-2007

*/ public class OWLIndividualFrame extends AbstractOWLFrame { public OWLIndividualFrame(OWLEditorKit editorKit) { super(editorKit.getModelManager().getOWLOntologyManager()); addSection(new OWLClassAssertionAxiomTypeFrameSection(editorKit, this)); addSection(new OWLSameIndividualsAxiomFrameSection(editorKit, this)); addSection(new OWLDifferentIndividualsAxiomFrameSection(editorKit, this)); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy