Searched defs:isTrue (Results 1 - 9 of 9) sorted by relevance
/owl-s/src/org/mindswap/owls/process/ |
H A D | Condition.java | 45 * call <code>condition.isTrue(condition.getKB(), new ValueMap())</code>.
49 public boolean isTrue();
method in interface:Condition 59 public boolean isTrue(ValueMap binding);
method in interface:Condition 66 public boolean isTrue(OWLModel model, ValueMap binding);
method in interface:Condition
|
/owl-s/src/impl/owls/generic/expression/ |
H A D | SWRLExpressionImpl.java | 72 public boolean isTrue() {
method in class:SWRLExpressionImpl 73 return getKB().isTrue( this );
76 public boolean isTrue(ValueMap binding) {
method in class:SWRLExpressionImpl 77 return getKB().isTrue( this, binding );
80 public boolean isTrue(OWLModel model, ValueMap binding) {
method in class:SWRLExpressionImpl 81 return model.isTrue( this, binding );
|
/owl-s/src/impl/owls/process/execution/ |
H A D | ProcessExecutionEngineImpl.java | 573 if( isTrue( ifCondition ))
583 while( isTrue( whileCondition ) )
594 while( !isTrue( repeatCondition ) );
666 protected boolean isTrue( Condition condition ) {
method in class:ProcessExecutionEngineImpl 668 return condition.isTrue( env, binding );
671 protected boolean isTrue( Condition condition, ValueMap binding ) {
method in class:ProcessExecutionEngineImpl 672 return condition.isTrue( env, binding );
|
/owl-s/src/org/mindswap/owl/ |
H A D | OWLModel.java | 702 public boolean isTrue(ABoxQuery query);
method in interface:OWLModel 708 * <code>isTrue( condition.getBody().toQuery() ).</code>
713 public boolean isTrue(Condition condition);
method in interface:OWLModel 723 public boolean isTrue(Condition condition, ValueMap binding);
method in interface:OWLModel
|
/owl-s/src/impl/jena/ |
H A D | OWLModelImpl.java | 1062 public boolean isTrue(ABoxQuery query) {
method in class:OWLModelImpl 1066 public boolean isTrue(Condition condition) {
method in class:OWLModelImpl 1067 return isTrue( condition.getBody().toQuery() );
1070 public boolean isTrue(Condition condition, ValueMap values) {
method in class:OWLModelImpl
|
/owl-s/lib/jena/ |
H A D | arq.jar | META-INF/ META-INF/MANIFEST.MF arq/ arq/cmd/ arq/cmdline/ arq/cmdline/test/ com/ com/ ... |
H A D | jena.jar | com/ com/hp/ com/hp/hpl/ com/hp/hpl/jena/ com/hp/hpl/jena/datatypes/ com/hp/hpl/jena/ ... |
/owl-s/lib/axis/ |
H A D | axis.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/axis/ org/apache/axis/attachments/ ... |
/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 ... |
Completed in 61 milliseconds