| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| FalseTriggeredRule |
|
| 1.0;1 |
| 1 | package org.kuali.rice.krms.framework.engine; | |
| 2 | ||
| 3 | import java.util.List; | |
| 4 | ||
| 5 | ||
| 6 | public class FalseTriggeredRule extends BasicRule { | |
| 7 | ||
| 8 | public FalseTriggeredRule(Proposition proposition, List<Action> actions) { | |
| 9 | 0 | super(proposition, actions); |
| 10 | 0 | } |
| 11 | ||
| 12 | @Override | |
| 13 | protected boolean shouldExecuteAction(boolean ruleExecutionResult) { | |
| 14 | 0 | return !ruleExecutionResult; |
| 15 | } | |
| 16 | ||
| 17 | } |