Searched refs:SWRLB (Results 1 - 7 of 7) sorted by relevance
/owl-s/src/org/mindswap/owls/io/ |
H A D | PresentationSyntaxExpressionWriter.java | 11 import org.mindswap.owl.vocabulary.SWRLB;
32 SYMBOLS.put( SWRLB.add, new String[] {"=", "+"} );
33 SYMBOLS.put( SWRLB.subtract, new String[] {"=", "-"} );
34 SYMBOLS.put( SWRLB.divide, new String[] {"=", "+"} );
35 SYMBOLS.put( SWRLB.multiply, new String[] {"=", "*"} );
36 SYMBOLS.put( SWRLB.lessThan, new String[] {"<"} );
37 SYMBOLS.put( SWRLB.lessThanOrEqual, new String[] {"<="} );
38 SYMBOLS.put( SWRLB.greaterThan, new String[] {">"} );
39 SYMBOLS.put( SWRLB.greaterThanOrEqual, new String[] {">="} );
40 SYMBOLS.put( SWRLB [all...] |
/owl-s/src/impl/swrl/ |
H A D | BuiltinAtomImpl.java | 15 import org.mindswap.owl.vocabulary.SWRLB;
28 THREE_ARGS.add( SWRLB.add );
29 THREE_ARGS.add( SWRLB.subtract );
30 THREE_ARGS.add( SWRLB.multiply );
31 THREE_ARGS.add( SWRLB.divide );
112 if( builtin.equals( SWRLB.equal ) ) {
119 else if( builtin.equals( SWRLB.lessThan ) ) {
126 else if( builtin.equals( SWRLB.greaterThan ) ) {
133 else if( builtin.equals( SWRLB.add ) ) {
142 else if( builtin.equals( SWRLB [all...] |
H A D | AtomListImpl.java | 19 import org.mindswap.owl.vocabulary.SWRLB;
178 if ( builtin.equals( SWRLB.equal ) )
180 else if ( builtin.equals( SWRLB.notEqual ) )
182 else if ( builtin.equals( SWRLB.greaterThan ) )
184 else if ( builtin.equals( SWRLB.greaterThanOrEqual ) )
186 else if ( builtin.equals( SWRLB.lessThan ) )
188 else if ( builtin.equals( SWRLB.lessThanOrEqual ) )
190 else if ( builtin.equals( SWRLB.add ) )
192 else if ( builtin.equals( SWRLB.subtract ) )
|
H A D | SWRLFactoryImpl.java | 15 import org.mindswap.owl.vocabulary.SWRLB;
153 atom.setBuiltin( SWRLB.equal );
162 atom.setBuiltin( SWRLB.notEqual );
171 atom.setBuiltin( SWRLB.lessThan );
180 atom.setBuiltin( SWRLB.lessThanOrEqual );
189 atom.setBuiltin( SWRLB.greaterThan );
198 atom.setBuiltin( SWRLB.greaterThanOrEqual );
207 atom.setBuiltin( SWRLB.add );
217 atom.setBuiltin( SWRLB.subtract );
227 atom.setBuiltin( SWRLB [all...] |
/owl-s/src/org/mindswap/owl/vocabulary/ |
H A D | SWRLB.java | 13 public class SWRLB {
class
|
/owl-s/src/impl/jena/ |
H A D | OWLModelImpl.java | 78 import org.mindswap.owl.vocabulary.SWRLB;
1148 if ( builtin.equals( SWRLB.equal ) ) {
1162 else if ( builtin.equals( SWRLB.notEqual ) )
1164 else if ( builtin.equals( SWRLB.greaterThan ) )
1166 else if ( builtin.equals( SWRLB.greaterThanOrEqual ) )
1168 else if ( builtin.equals( SWRLB.lessThan ) )
1170 else if ( builtin.equals( SWRLB.lessThanOrEqual ) )
1172 else if ( builtin.equals( SWRLB.add ) ) {
1191 else if ( builtin.equals( SWRLB.subtract ) ) {
|
H A D | OWLOntologyImpl.java | 584 owlsNamespaces.add(org.mindswap.owl.vocabulary.SWRLB.equal.getNamespace());
|
Completed in 888 milliseconds