Package org.apache.maven.model.building
Interface ModelBuildingListener
-
- All Known Implementing Classes:
AbstractModelBuildingListener
public interface ModelBuildingListenerDefines events that the model builder fires during construction of the effective model. When a listener encounters errors while processing the event, it can report these problems viaModelBuildingEvent.getProblems(). Note: To cope with future extensions to this interface, it is strongly recommended to extendAbstractModelBuildingListenerrather than to directly implement this interface.- Author:
- Benjamin Bentmann
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbuildExtensionsAssembled(ModelBuildingEvent event)Notifies the listener that the model has been constructed to the extent where build extensions can be processed.
-
-
-
Method Detail
-
buildExtensionsAssembled
void buildExtensionsAssembled(ModelBuildingEvent event)
Notifies the listener that the model has been constructed to the extent where build extensions can be processed.- Parameters:
event- The details about the event.
-
-