mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
23 lines
1.2 KiB
Markdown
23 lines
1.2 KiB
Markdown
# Project Wizard Demo [][docs]
|
|
*Reference: [Plugin Services in IntelliJ SDK Docs][docs:project_wizard]*
|
|
|
|
## Quickstart
|
|
|
|
This demo project shows how to add an extra step to the Project Wizard to provide additional project configuration settings.
|
|
The new step contains a simple `JLabel` element as an example presentation of the new step content.
|
|
|
|
### Extension Points
|
|
|
|
| Name | Implementation | Extension Point Class |
|
|
| ---------------------------- | ------------------------------------------------- | --------------------- |
|
|
| `com.intellij.moduleBuilder` | [DemoModuleWizardStep][file:DemoModuleWizardStep] | `ModuleBuilder` |
|
|
|
|
*Reference: [Plugin Extension Points in IntelliJ SDK Docs][docs:ep]*
|
|
|
|
|
|
[docs]: https://www.jetbrains.org/intellij/sdk/docs
|
|
[docs:project_wizard]: https://jetbrains.org/intellij/sdk/docs/tutorials/project_wizard.html
|
|
[docs:ep]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_extensions.html
|
|
|
|
[file:DemoModuleWizardStep]: ./src/main/java/org/intellij/sdk/project/wizard/DemoModuleWizardStep.java
|