Lines Matching defs:repeatInfo
479 private RepeatUntil createRepeatUntil(OWLIndividual repeatInfo) {
480 RepeatUntil repeat = (RepeatUntil) translate(repeatInfo, RepeatUntil.class, OWLS_1_1.Process.RepeatUntil);
482 if(inputOnt.hasProperty(repeatInfo, OWLS_1_0.Process.untilCondition)) {
483 createCondition(repeat, inputOnt.getProperties(repeatInfo, OWLS_1_0.Process.untilCondition));
489 if(inputOnt.hasProperty(repeatInfo, OWLS_1_0.Process.components)) {
493 if(inputOnt.hasProperty(repeatInfo, OWLS_1_0.Process.untilProcess)) {
494 OWLIndividual untilComponentInfo = inputOnt.getProperty(repeatInfo, OWLS_1_0.Process.untilProcess);
500 "\n RepeatUntil: " + repeatInfo + ")");
509 private RepeatWhile createRepeatWhile(OWLIndividual repeatInfo) {
510 RepeatWhile repeat = (RepeatWhile) translate(repeatInfo, RepeatWhile.class, OWLS_1_1.Process.RepeatWhile);
512 if(inputOnt.hasProperty(repeatInfo, OWLS_1_0.Process.whileCondition)) {
513 createCondition(repeat, inputOnt.getProperties(repeatInfo, OWLS_1_0.Process.whileCondition));
519 if(inputOnt.hasProperty(repeatInfo, OWLS_1_0.Process.components)) {
523 if(inputOnt.hasProperty(repeatInfo, OWLS_1_0.Process.whileProcess)) {
524 OWLIndividual whileComponentInfo = inputOnt.getProperty(repeatInfo, OWLS_1_0.Process.whileProcess);
530 "\n RepeatWhile: " + repeatInfo + ")");