mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
23 lines
1.1 KiB
Markdown
23 lines
1.1 KiB
Markdown
# Framework Sample Project [][docs]
|
|
*Reference: [Supporting Frameworks in IntelliJ SDK Docs][docs:supporting_frameworks]*
|
|
|
|
## Quickstart
|
|
|
|
Framework Sample Project provides a [DemoFramework][file:DemoFramework], which allows embedding framework support within the Project Wizard.
|
|
This sample implementation adds a new *SDK Demo Framework* support in the Java type project.
|
|
|
|
### Extension Points
|
|
|
|
| Name | Implementation | Extension Point Class |
|
|
| ----------------------------- | ----------------------------------- | --------------------- |
|
|
| `com.intellij.framework.type` | [DemoFramework][file:DemoFramework] | `FrameworkTypeEx` |
|
|
|
|
*Reference: [Plugin Extension Points in IntelliJ SDK Docs][docs:ep]*
|
|
|
|
|
|
[docs]: https://www.jetbrains.org/intellij/sdk/docs
|
|
[docs:supporting_frameworks]: https://jetbrains.org/intellij/sdk/docs/tutorials/framework.html
|
|
[docs:ep]: https://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_extensions.html
|
|
|
|
[file:DemoFramework]: ./src/main/java/org/intellij/sdk/framework/DemoFramework.java
|