mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
31 lines
1004 B
XML
31 lines
1004 B
XML
<idea-plugin version="2" url="www.jetbrains.com">
|
|
<id>org.jetbrains.plugins.sample.TreeStructure</id>
|
|
<name>Tree Structure Provider Demo</name>
|
|
<version>1.0</version>
|
|
<vendor email="support@jetbrains.com" url="http://www.jetbrains.com">JetBrains</vendor>
|
|
|
|
<description>Tree Structure Provider Demo</description>
|
|
|
|
<change-notes>Initial commit</change-notes>
|
|
|
|
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
|
|
<idea-version since-build="131"/>
|
|
<depends>com.intellij.modules.lang</depends>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<treeStructureProvider implementation="org.jetbrains.plugins.sample.CustomTreeStructureProvider"/>
|
|
</extensions>
|
|
|
|
<application-components>
|
|
<!-- Add your application components here -->
|
|
</application-components>
|
|
|
|
<project-components>
|
|
<!-- Add your project components here -->
|
|
</project-components>
|
|
|
|
<actions>
|
|
<!-- Add your actions here -->
|
|
</actions>
|
|
|
|
</idea-plugin> |