diff options
author | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-11-16 20:09:22 +0000 |
---|---|---|
committer | Federico Igne <federico.igne@cs.ox.ac.uk> | 2020-11-16 20:09:22 +0000 |
commit | c6ae617490ad7e2429207e1393415ec9bff7a501 (patch) | |
tree | 43ebdced920b5088cac7de1d16f5b4adebe03ee3 /src/main/scala/rsacomb/RDFoxClassExprConverter.scala | |
parent | 2d8afc3a50384d2aea6c97958a814fedc7b9bd40 (diff) | |
download | RSAComb-c6ae617490ad7e2429207e1393415ec9bff7a501.tar.gz RSAComb-c6ae617490ad7e2429207e1393415ec9bff7a501.zip |
Rework suffixes
This is a WIP implementation of a generalized way of handling IRI
suffixes. It is not currently used everywhere.
Diffstat (limited to 'src/main/scala/rsacomb/RDFoxClassExprConverter.scala')
-rw-r--r-- | src/main/scala/rsacomb/RDFoxClassExprConverter.scala | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/scala/rsacomb/RDFoxClassExprConverter.scala b/src/main/scala/rsacomb/RDFoxClassExprConverter.scala index 89a1a04..f3a0dfc 100644 --- a/src/main/scala/rsacomb/RDFoxClassExprConverter.scala +++ b/src/main/scala/rsacomb/RDFoxClassExprConverter.scala | |||
@@ -31,13 +31,15 @@ import rsacomb.RDFoxRuleShards | |||
31 | import org.semanticweb.owlapi.model.OWLObjectPropertyExpression | 31 | import org.semanticweb.owlapi.model.OWLObjectPropertyExpression |
32 | import org.semanticweb.owlapi.model.OWLObjectProperty | 32 | import org.semanticweb.owlapi.model.OWLObjectProperty |
33 | 33 | ||
34 | import suffix.{RSASuffix, Empty} | ||
35 | |||
34 | object RDFoxClassExprConverter { | 36 | object RDFoxClassExprConverter { |
35 | 37 | ||
36 | def apply( | 38 | def apply( |
37 | term: Term, | 39 | term: Term, |
38 | unsafe: List[OWLObjectPropertyExpression] = List(), | 40 | unsafe: List[OWLObjectPropertyExpression] = List(), |
39 | skolem: SkolemStrategy = SkolemStrategy.None, | 41 | skolem: SkolemStrategy = SkolemStrategy.None, |
40 | suffix: RSASuffix = RSASuffix.None | 42 | suffix: RSASuffix = Empty |
41 | ): RDFoxClassExprConverter = | 43 | ): RDFoxClassExprConverter = |
42 | new RDFoxClassExprConverter(term, unsafe, skolem, suffix) | 44 | new RDFoxClassExprConverter(term, unsafe, skolem, suffix) |
43 | 45 | ||