Skip to content

Commit

Permalink
updated documentation about IEngineAddon interface
Browse files Browse the repository at this point in the history
contributes to
#151

Signed-off-by: Didier Vojtisek <[email protected]>
  • Loading branch information
dvojtise committed Jan 31, 2020
1 parent ec940d7 commit 8998630
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ deactivate Launcher
deactivate Launcher

Engine --> addon : engineAboutToStart
note right
if required, the order of the calls to the Addons
can be controled by defining
EngineAddonSortingRules in the Addons
end note
Engine -> Engine : beforeStart
Engine --> addon : engineStarted
Engine -> Engine : performStart
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ Most notably, the _IEngineAddon_ and _IExecutionEngine_ interfaces that are the
image::images/dev/frameworkcommons_api_overview_CD.png["Execution Framework API Interfaces overview"]


TIP: The section <<dev-new-addons>> contains some details and code snippets about how to write an engine addon.

Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ default public List<String> getTags() {
* A given rule indicate when to call the current addon relatively to addons referred by the rule
* @return
*/
default public List<EngineAddonSortingRule> getAddonSortingRules(){
default public List<EngineAddonSortingRule> getAddonSortingRules() {
return new ArrayList<EngineAddonSortingRule>();
}

Expand Down

0 comments on commit 8998630

Please sign in to comment.