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

org.swrlapi.builtins.arguments.SWRLAnnotationPropertyBuiltInArgument Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
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