org.swrlapi.builtins.arguments.SWRLAnnotationPropertyBuiltInArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swrlapi Show documentation
Show all versions of swrlapi Show documentation
Java API for working with SWRL rules and SQWRL queries
package org.swrlapi.builtins.arguments;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.OWLAnnotationProperty;
/**
* Represents an OWL annotation property argument to a SWRL built-in atom.
*
* @see org.semanticweb.owlapi.model.OWLAnnotationProperty
*/
public interface SWRLAnnotationPropertyBuiltInArgument extends SWRLNamedBuiltInArgument
{
/**
* @return An OWL annotation property
*/
@NonNull OWLAnnotationProperty getOWLAnnotationProperty();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy