/owl-s/src/impl/swrl/ |
H A D | IndividualPropertyAtomImpl.java | 8 import org.mindswap.owl.vocabulary.SWRL;
26 return (OWLObjectProperty) getPropertyAs(SWRL.propertyPredicate, OWLObjectProperty.class);
30 setProperty(SWRL.propertyPredicate, (OWLIndividual) p.castTo(OWLIndividual.class));
34 return (SWRLIndividualObject) getPropertyAs(SWRL.argument1, SWRLIndividualObject.class);
38 return (SWRLIndividualObject) getPropertyAs(SWRL.argument2, SWRLIndividualObject.class);
70 setProperty(SWRL.argument1, obj);
74 setProperty(SWRL.argument2, obj);
|
H A D | DataPropertyAtomImpl.java | 9 import org.mindswap.owl.vocabulary.SWRL;
30 return (OWLDataProperty) getPropertyAs(SWRL.propertyPredicate, OWLDataProperty.class);
34 setProperty(SWRL.propertyPredicate, (OWLIndividual) p.castTo(OWLIndividual.class));
38 return (SWRLIndividualObject) getPropertyAs(SWRL.argument1, SWRLIndividualObject.class);
42 SWRLDataObject arg = (SWRLDataVariable) getPropertyAs(SWRL.argument2, SWRLDataVariable.class);
44 arg = (SWRLDataValue) getPropertyAs(SWRL._argument2, SWRLDataValue.class);
85 setProperty(SWRL.argument1, obj);
90 setProperty(SWRL._argument2, obj);
92 setProperty(SWRL.argument2, (SWRLDataVariable) obj);
|
H A D | ClassAtomImpl.java | 8 import org.mindswap.owl.vocabulary.SWRL;
26 return (OWLClass) getPropertyAs(SWRL.classPredicate, OWLClass.class);
30 setProperty(SWRL.classPredicate, (OWLIndividual) c.castTo(OWLIndividual.class));
34 return (SWRLIndividualObject) getPropertyAs(SWRL.argument1, SWRLIndividualObject.class);
59 setProperty(SWRL.argument1, obj);
|
H A D | DifferentIndividualsAtomImpl.java | 9 import org.mindswap.owl.vocabulary.SWRL;
27 return (SWRLIndividualObject) getPropertyAs(SWRL.argument1, SWRLIndividualObject.class);
31 return (SWRLIndividualObject) getPropertyAs(SWRL.argument2, SWRLIndividualObject.class);
63 setProperty(SWRL.argument1, obj);
67 setProperty(SWRL.argument2, obj);
|
H A D | SameIndividualAtomImpl.java | 9 import org.mindswap.owl.vocabulary.SWRL;
27 return (SWRLIndividualObject) getPropertyAs(SWRL.argument1, SWRLIndividualObject.class);
31 return (SWRLIndividualObject) getPropertyAs(SWRL.argument2, SWRLIndividualObject.class);
63 setProperty(SWRL.argument1, obj);
67 setProperty(SWRL.argument2, obj);
|
H A D | SWRLFactoryImpl.java | 14 import org.mindswap.owl.vocabulary.SWRL;
46 return (AtomList) ont.createList(SWRL.AtomListVocabulary).castTo(AtomList.class);
50 return (AtomList) ont.createList(SWRL.AtomListVocabulary, atom).castTo(AtomList.class);
54 return new SWRLIndividualVariableImpl(ont.createInstance(SWRL.Variable, uri));
58 return new SWRLDataVariableImpl(ont.createInstance(SWRL.Variable, uri));
70 ClassAtom atom = (ClassAtom) ont.createInstance( SWRL.ClassAtom ).castTo( ClassAtom.class );
91 ont.createInstance( SWRL.IndividualPropertyAtom ).castTo( IndividualPropertyAtom.class );
113 ont.createInstance( SWRL.DatavaluedPropertyAtom ).castTo( DataPropertyAtom.class );
129 ont.createInstance( SWRL.SameIndividualAtom ).castTo( SameIndividualAtom.class );
144 ont.createInstance( SWRL [all...] |
H A D | BuiltinAtomImpl.java | 14 import org.mindswap.owl.vocabulary.SWRL;
39 return getProperty(SWRL.builtin);
43 setProperty(SWRL.builtin, builtin);
54 OWLIndividual args = getProperty(SWRL.arguments);
80 setProperty(SWRL.arguments, args);
96 setProperty(SWRL.arguments, args);
171 throw new NotImplementedException("Builtin SWRL atoms cannot be evaluated");
|
H A D | AtomListImpl.java | 18 import org.mindswap.owl.vocabulary.SWRL;
47 setVocabulary( SWRL.AtomListVocabulary );
|
/owl-s/src/impl/jena/ |
H A D | RDQLParser.java | 24 import org.mindswap.owl.vocabulary.SWRL;
166 OWLIndividual ind = ont.createInstance( SWRL.Variable, new URI( varNS + expr.getName() ) );
206 OWLIndividual ind = ont.createInstance( SWRL.Variable, new URI( varNS + node.getName() ) );
217 OWLIndividual ind = ont.createInstance( SWRL.Variable, new URI( varNS + node.getName() ) );
|
H A D | OWLOntologyImpl.java | 583 owlsNamespaces.add(org.mindswap.owl.vocabulary.SWRL.AtomList.getNamespace());
|
H A D | OWLModelImpl.java | 77 import org.mindswap.owl.vocabulary.SWRL;
1643 writer.setNsPrefix("swrl", SWRL.URI);
|
/owl-s/src/impl/owls/ |
H A D | OWLSConverters.java | 80 import org.mindswap.owl.vocabulary.SWRL;
295 new ListConverter(AtomListImpl.class, SWRL.AtomListVocabulary);
297 new GenericOWLSConverter(ClassAtomImpl.class, SWRL.ClassAtom);
299 new GenericOWLSConverter(IndividualPropertyAtomImpl.class, SWRL.IndividualPropertyAtom);
301 new GenericOWLSConverter(DataPropertyAtomImpl.class, SWRL.DatavaluedPropertyAtom);
303 new GenericOWLSConverter(SameIndividualAtomImpl.class, SWRL.SameIndividualAtom);
305 new GenericOWLSConverter(DifferentIndividualsAtomImpl.class, SWRL.DifferentIndividualsAtom);
307 new GenericOWLSConverter(BuiltinAtomImpl.class, SWRL.BuiltinAtom);
314 new GenericOWLSConverter(SWRLIndividualVariableImpl.class, SWRL.Variable),
323 new GenericOWLSConverter(SWRLDataVariableImpl.class, SWRL [all...] |
/owl-s/src/impl/owls/generic/expression/ |
H A D | SWRLExpressionImpl.java | 48 super(ind, OWLS.Expression.SWRL);
|
/owl-s/src/org/mindswap/owl/vocabulary/ |
H A D | SWRL.java | 16 public class SWRL {
class
|
/owl-s/src/org/mindswap/owls/vocabulary/ |
H A D | OWLS_1_1.java | 402 public static OWLIndividual SWRL;
field in class:OWLS_1_1.Expression 438 SWRL_Condition = EntityFactory.createClass(URIUtils.createURI(URI + "SWRL-Condition"));
442 SWRL_Expression = EntityFactory.createClass(URIUtils.createURI(URI + "SWRL-Expression"));
446 SWRL = EntityFactory.createIndividual(URIUtils.createURI(URI + "SWRL"));
455 SWRL.setProperty(refURI, SWRLref);
|
H A D | OWLS_1_2.java | 402 public static OWLIndividual SWRL;
field in class:OWLS_1_2.Expression 438 SWRL_Condition = EntityFactory.createClass(URIUtils.createURI(URI + "SWRL-Condition"));
442 SWRL_Expression = EntityFactory.createClass(URIUtils.createURI(URI + "SWRL-Expression"));
446 SWRL = EntityFactory.createIndividual(URIUtils.createURI(URI + "SWRL"));
455 SWRL.setProperty(refURI, SWRLref);
|
/owl-s/lib/pellet/ |
H A D | pellet.jar | com/ com/lre/ com/lre/graph/ com/lre/graph/Edge.class Edge.java package com.lre ... |