new ExtensionEntryPoint()

Description

An extension entry point is an object provided by component implementers like extensions or modules.
Implement the ExtensionEntryPoint#mountToApp that is called by the host application that passes a
ComponentContainer so they can obtain existing component instances to extend the application
(ComponentContainer#getComponent) or register new component types (ComponentContainer#registerComponent).
or register component (BaseComponent) implementations. See ComponentContainer

Methods


mountToApp( componentContainer )

Description

When the host application starts, it will call this method for each activated extension, in order of activation, passing the component container as a parameter so extensions can get components to work with (see ComponentContainer#getComponent) or register new components (see ComponentContainer#registerComponent).

Parameters
Name Type Description
componentContainer ComponentContainer

componentContainer