Interface for World builder.
| 31 | * Interface for {@link World} builder. |
| 32 | */ |
| 33 | public interface WorldBuilder { |
| 34 | |
| 35 | /** |
| 36 | * Builds a new instance of {@link World} and make it globally accessible |
| 37 | * through static methods of {@link World}. |
| 38 | * TODO: remove {@code analyses}. |
| 39 | * |
| 40 | * @param options the options |
| 41 | * @param analyses the analyses to be executed |
| 42 | */ |
| 43 | void build(Options options, List<AnalysisConfig> analyses); |
| 44 | } |
no outgoing calls
no test coverage detected