From 1c9c86cf9adbf489bb8d19faa2db6685f9ff8ec9 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Wed, 23 Apr 2025 15:14:20 +0200 Subject: [PATCH] new_project_wizard.md: Add note about checking example implementations --- topics/reference_guide/new_project_wizard.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/topics/reference_guide/new_project_wizard.md b/topics/reference_guide/new_project_wizard.md index d28a68c61..e831d2ae5 100644 --- a/topics/reference_guide/new_project_wizard.md +++ b/topics/reference_guide/new_project_wizard.md @@ -74,6 +74,8 @@ The most important methods are: - `setupUI()` — defines the UI components for the step. Step UI is built with [](kotlin_ui_dsl_version_2.md) - `setupProject()` — applies the parameters provided in UI to the generated project +See the example implementations in the in the [`intellij-community`](https://github.com/JetBrains/intellij-community). + Steps build a tree structure (read the rest of this section for details), as some steps can be displayed depending on previously selected options. `setupUI()` and `setupProject()` of steps building the tree are applied in the order from root to leaf. Note that `setupProject()` won't be called for hidden steps.