1 package org.smartcomps.twister.engine.priv.core.definition;
2
3 import org.smartcomps.twister.engine.priv.core.definition.BasicActivity;
4
5 /***
6 * Allows you to wait for a certain period or until a given time
7 * has passed.
8 */
9 public interface Wait extends BasicActivity {
10
11 /***
12 * Gets the time expression of this Wait
13 * @return
14 */
15 public String getTime();
16 public void setTime(String time);
17
18 public boolean isDuration();
19 public void setDuration(boolean duration);
20
21 }
This page was automatically generated by Maven