![JAR search and dependency download from the Maven repository](/logo.png)
org.coode.owlviz.command.AddExistentialGraphCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of owlviz Show documentation
Show all versions of owlviz Show documentation
A plug-in for the Protege Desktop ontology editor that provides a graphical representation of the class
hierarchies in an OWL ontology.
The newest version!
package org.coode.owlviz.command;
import javax.swing.*;
import java.awt.event.ActionEvent;
/**
* User: matthewhorridge
* The Univeristy Of Manchester
* Medical Informatics Group
* Date: Jul 7, 2005
*
* [email protected]
* www.cs.man.ac.uk/~horridgm
*/
public class AddExistentialGraphCommand extends AbstractAction {
// private OWLVizView tab;
//
// private OWLModel model;
//
// public AddExistentialGraphCommand(OWLVizView tab, OWLModel model) {
// super("Add existential graph...", OWLIcons.getImageIcon(OWLIcons.OWL_SOME_VALUES_FROM));
// this.tab = tab;
// this.model = model;
// }
//
// public void actionPerformed(ActionEvent e) {
// RDFProperty property = OWLUI.pickRDFProperty(model.getUserDefinedOWLObjectProperties(), "Select a property");
// OWLObjectProperty objProperty = (OWLObjectProperty) property;
// if(property != null && property instanceof OWLObjectProperty) {
// tab.addExistentialPanel(objProperty);
// }
// }
public void actionPerformed(ActionEvent e) {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy