intellij-sdk-code-samples/tree_structure_provider
Yann Cébron 2cdd0f2490 2025.1 release (#1449)
* 251: update GH links in topics

* code_samples: Gradle 2.x (WIP)

* code_samples: Gradle 2.x (WIP)

* code_samples: Gradle 2.x (WIP)

* code_samples: Gradle 2.x (WIP)

* code_samples: Gradle 2.x (WIP)

* code_samples: Gradle 2.x (WIP)

* GH: theme_basics is not a Gradle project

* GH: remove deleted kotlin_demo project

* README: remove deleted kotlin_demo project

* code_samples: remove product_specific

* 2025.1 Beta3

* code_samples: remove obsolete kotlin_demo dir

* code_samples: add .intellijPlatform to .gitignore

* stub_indexes.md: fix gh link

* api_notable_list_2020.md: fix gh link

* code_samples: add .gitignore for standalone repo

* code_samples: build against latest 2024.2.x, set since-build explicitly

* code_samples: fix framework_basics

* Update EP and Listener lists

* Convert %gh-ic-master% links to %gh-ic%

* additional_minor_features.md: Update link to FileIncludeProvider

* api_notable_list_2020.md: Add note about internal API

* status_bar_widgets.md: Update StatusBarWidget.TextPresentation example

The previous example doesn't implement TextPresentation any more.

---------

Co-authored-by: Karol Lewandowski <karol.lewandowski@jetbrains.com>
2025-04-16 14:49:28 +02:00
..
2025-02-26 09:36:25 +01:00
2025-04-16 14:49:28 +02:00
2025-02-26 09:36:25 +01:00
2024-07-16 10:59:02 +02:00
2021-11-08 17:31:16 +01:00

Tree Structure Provider Sample JetBrains IntelliJ Platform SDK Docs

Reference: Tree Structure View in IntelliJ SDK Docs

Quickstart

The Tree Structure Provider sample project implements com.intellij.treeStructureProvider Extension Point, which allows modifying the structure of the project tree in the Project View panel. This implementation limits the presented files to the Plain Text files only.

The current implementation checks if a Project View node represents a directory or file of the PlainTextFileType type. Otherwise, an element is not included in the results list, so only directories and plain text files are rendered.

Extension Points

Name Implementation Extension Point Class
com.intellij.treeStructureProvider TextOnlyTreeStructureProvider TreeStructureProvider

Reference: Plugin Extension Points in IntelliJ SDK Docs