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

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

import org.semanticweb.owlapi.model.OWLDataProperty;
import org.semanticweb.owlapi.model.OWLLiteral;


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

*/ public class OWLDataPropertyConstantPair { private OWLDataProperty property; private OWLLiteral constant; public OWLDataPropertyConstantPair(OWLDataProperty property, OWLLiteral constant) { this.property = property; this.constant = constant; } public OWLDataProperty getProperty() { return property; } public OWLLiteral getConstant() { return constant; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy