org.swrlapi.factory.DefaultSQWRLPropertyResultValue 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.factory;
import org.checkerframework.checker.nullness.qual.NonNull;
import org.semanticweb.owlapi.model.IRI;
import org.swrlapi.sqwrl.values.SQWRLPropertyResultValue;
abstract class DefaultSQWRLPropertyResultValue extends DefaultSQWRLEntityResultValue implements SQWRLPropertyResultValue
{
DefaultSQWRLPropertyResultValue(@NonNull IRI propertyIRI, @NonNull String prefixedName, @NonNull String shortForm)
{
super(propertyIRI, prefixedName, shortForm);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy