Lines Matching full:actions
32 * Performs actions based on whether a condition is true.
45 * If the condition is true, the actions in the "then" clause are executed.
47 * If the condition is false, the actions in the "else" clause are executed (if
65 * @param thenActions actions to perform if condition is true
66 * @param elseActions actions to perform if condition is false (optional)
79 * If the condition action returns true, the actions in the "then" clause
83 * If the condition action returns false, the actions in the "else" clause
106 * Returns the actions in the "then" clause.
108 * These actions are executed if the condition is true.
110 * @return then clause actions
118 * Returns the actions in the "else" clause.
120 * These actions are executed if the condition is false.
122 * @return else clause actions
152 * Actions in the "then" clause. Executed if condition is true.
157 * Actions in the "else" clause. Executed if condition is false. Optional.