Package org.apache.maven.model.building
Interface ModelBuildingEvent
public interface ModelBuildingEvent
Holds data relevant for a model building event.
- 
Method SummaryModifier and TypeMethodDescriptiongetModel()Gets the model being built.Gets the container used to collect problems that were encountered while processing the event.Gets the model building request being processed.
- 
Method Details- 
getModelModel getModel()Gets the model being built. The precise state of this model depends on the event being fired.- Returns:
- The model being built, never null.
 
- 
getRequestModelBuildingRequest getRequest()Gets the model building request being processed.- Returns:
- The model building request being processed, never null.
 
- 
getProblemsModelProblemCollector getProblems()Gets the container used to collect problems that were encountered while processing the event.- Returns:
- The container used to collect problems that were encountered, never null.
 
 
-