| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| Context |
|
| 1.0;1 |
| 1 | package org.kuali.rice.krms.api; | |
| 2 | ||
| 3 | import java.util.List; | |
| 4 | ||
| 5 | public interface Context { | |
| 6 | ||
| 7 | void execute(ExecutionEnvironment environment); | |
| 8 | ||
| 9 | List<AssetResolver<?>> getAssetResolvers(); | |
| 10 | ||
| 11 | boolean appliesTo(ExecutionEnvironment environment); | |
| 12 | ||
| 13 | } |