Interface ProjectEvaluationListener
public interface ProjectEvaluationListener
-
Method Summary
Modifier and Type
Method
Description
voidThis method is called when a project has been evaluated, and before the evaluated project is made available to other projects.
voidThis method is called immediately before a project is evaluated.
-
Method Details
-
beforeEvaluate
void beforeEvaluate (Project project)
This method is called immediately before a project is evaluated.
- Parameters:
project- The which is to be evaluated. Never null.
-
afterEvaluate
This method is called when a project has been evaluated, and before the evaluated project is made available to other projects.
- Parameters:
project- The project which was evaluated. Never null.state- The project evaluation state. If project evaluation failed, the exception is available in this state. Never null.
-