View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition; 2 3 import org.smartcomps.twister.engine.priv.core.definition.Scope; 4 import org.smartcomps.twister.engine.priv.core.definition.StructuredActivity; 5 6 7 /*** 8 * The While activity allows you to indicate that an activity is to 9 * be repeated until a certain success criteria has been met. 10 */ 11 public interface While extends StructuredActivity { 12 13 public String getCondition(); 14 public void setCondition(String booleanExpr); 15 16 }

This page was automatically generated by Maven